One of the following numbers is not divisible by any prime number less than Which is it?
- A)
- B)
- C)
- D)
- E)
Answer
C
Key insight
Factoring identities (a ± b divides aⁿ ± bⁿ) eliminate (A), (B), (D), (E) via 3 or 5; only 2^607 − 1 survives.
Solution
The primes less than are . All five numbers are odd, so we look for factors of , or using two facts: divides for every , and divides when is odd.
- (A) is divisible by .
- (B) , and is odd, so it is divisible by .
- (D) with odd is divisible by .
- (E) with odd is divisible by .
That leaves (C). To confirm, check directly. Mod : , so . Mod : and , so and . Mod : and , so . None of divides it, and it is odd.
The answer is .
Why this works
Huge powers are never meant to be computed; the exponent's parity and factorization decide which algebraic identity applies. Even exponents let you rewrite as and use ; odd exponents give as a factor of . When exactly one choice survives, the confirming residue check is short because has tiny cycles modulo , , .
The trap
Trying to check 2^607 − 1 directly for divisibility by 2, 3, 5, 7 before eliminating the others, and getting lost in exponent cycles.
Common mistakes
- Trying to check 2^607 − 1 directly for divisibility by 2, 3, 5, 7 before eliminating the others, and getting lost in exponent cycles.
- Applying " divides " with an even (it fails), for instance believing is divisible by .
Techniques
Apply an identity: SFFT, sum of squares, difference of cubes, Vieta · Use the answer choices (mod checks, size, form) to eliminate or select