Find the number of integers between 1 and 1001 that are divisible by 4, but not divisible by 6.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
There are 250 numbers that is divisible by 4(1000/4=250).But we have to count which are not divisible by 6.So the numbers are the multiple of lcm(6,4) which mean 12. There are 83 numbers like these(1001/12=83.42 which mean 83),So the answer is (250-83)=167....