There exists a unique strictly increasing sequence of nonnegative integers such that What is
- A)
- B)
- C)
- D)
- E)
Answer
C
Key insight
With x = 2^17 the quotient is x^16 - x^15 + ... + 1; each pair x^{2j} - x^{2j-1} is a block of 17 binary ones.
Solution
Since , set . Then and the fraction becomes
the standard factorization of a sum of odd powers. The question asks how many s this number has in binary, since the are the positions of the bits.
The alternating signs must be removed. Group consecutive pairs:
Each pair is . In binary is seventeen s, and multiplying by a power of just shifts, so each pair contributes exactly ones, occupying bits through . These bit ranges for are disjoint and never touch bit , where the lone sits.
Counting: pairs ones .
The answer is .
Why this works
A quotient like is a polynomial in with alternating coefficients; to read it in base (here base blocks of width ) you must convert each negative coefficient into a "borrow," which in binary turns into a run of ones. Try the tiny analogue : one pair contributing ones plus the final , four ones in all, matching the formula .
The trap
Counting the 17 alternating terms as 17 powers of two, or getting 8 * 17 = 136 and forgetting the final +1.
Common mistakes
- Counting the 17 alternating terms as 17 powers of two, or getting 8 * 17 = 136 and forgetting the final +1.
- Miscounting the number of pairs (there are pairs among the terms of degree to ) or using ones per block.
Techniques
Apply an identity: SFFT, sum of squares, difference of cubes, Vieta · Compute small cases, spot the pattern, generalize · Substitute to simplify (u = x+1/x, shifting, scaling)