CSAT Solved Papers/ 2024/Q46
2024 CSAT — Q46
What is the sum of the first terms in the following sequence?
Worked rationale
The sequence is a concatenation of descending blocks. Reading the runs that end in :
Track the cumulative term-count and block sums (a block has sum ):
| block | terms | cum. terms | block sum |
|---|---|---|---|
| 1 | 1 | 1 | |
| 1 | 2 | 1 | |
| 2 | 4 | 3 | |
| 3 | 7 | 6 | |
| 4 | 11 | 10 | |
| 5 | 16 | 15 | |
| 6 | 22 | 21 | |
| 7 | 29 | 28 |
After the block we have terms, summing . We need more terms, taken from the start of : those are , summing .
Answer: (b) 84.
Why the other options miss
- A counted one too few: takes only terms of the final block (), landing on … or miscounts the cumulative as , dropping a term.
- C counted one too many: includes a th term of the final block (the ), overshooting by one term.
- D missed a case: mis-decomposes the blocks (e.g. forgets the duplicated opening ), shifting the cumulative count and grabbing too many large terms.
Specialist insight
The trap is the block boundary: does not land at the end of a block. Decompose into descending runs, sum complete blocks up to the largest cumulative (here terms, sum ), then add exactly the first few terms of the next block (). Counting one term too many or too few is the entire difference between (a), (b), and (c). The opening duplication must be honoured or the whole cumulative shifts — read the printed terms literally before generalising.
falls mid-block: sum the full blocks through terms (), then add only the first of , i.e. — total .