A sequence of natural numbers is constructed by listing the first , then skipping one, listing the next , skipping , listing , skipping , and, on the th iteration, listing and skipping . The sequence begins . What is the number in the sequence?
- A)
- B)
- C)
- D)
- E)
Answer
A
Key insight
After n rounds, n(n+7)/2 numbers are listed and the count reaches n(n+4); n = 996 gives 499,494 listed ending at 996,000, so the answer is 996,000 + 506.
Solution
Track two running totals after complete rounds.
Numbers listed: .
Integers passed (listed or skipped): . So round begins with the integer .
Check: gives listed and passed; gives listed and passed, and the next term is , matching the given start.
Now find the round containing the th term. We need , i.e. , so . Indeed
and round lists more, which is plenty. The integers passed after rounds total .
Round lists consecutive integers starting at . The th term is entry number of this block:
The answer is .
Why this works
Block-structured sequences call for two cumulative counts: how many terms have been produced and how far along the integers we have moved. Both are quadratic in the round number, so a square-root estimate locates the right round and exact arithmetic pins down the position inside it. The nearly identical answer choices are a warning that the final off-by-one step is where the problem is actually decided; verifying the formulas on the first two rounds guards against it.
Alternative approach
Complementary view: the th listed number equals plus the number of skipped integers before it. After rounds, integers were skipped, and no more are skipped until round finishes. So the answer is .
The trap
Off-by-one at the start of round 997: the block begins at 996,001, so its 506th entry is 996,506, not 996,505 or 996,507.
Common mistakes
- Off-by-one at the start of round 997: the block begins at 996,001, so its 506th entry is 996,506, not 996,505 or 996,507.
- Confusing the two totals, for example solving to choose the round, or forgetting the skipped numbers when converting position to value.
- Arithmetic slips in ; note is exact, which makes the passed-count especially clean.
Techniques
Bound the quantity above/below or estimate to pin it down · Set up the equation/formula and compute; no special trick needed