Any number from 101 to 200 that is not divisible by any element from 2 to 100 must be a prime number.
So, we want to count how many prime numbers lie in the interval \([101, 200]\).
List of such primes:
\[
101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199
\]
Count = \boxed{21}