How many positive integers less than \(1000\) are relatively prime to \(30\) ?
Remove all EVEN numbers between 1 and 1,000 == 500
Remove all multiples of 3 that are ODD == 167
Remove all multiples of 15 == 67
1,000 - [500 + 167 + 67] == 266 integers between 1 and 1,000 that are relatively prime to 30.