Difficulty: Easy
Correct Answer: 18
Explanation:
Introduction / Context:
This series uses a growing ladder of consecutive additions grouped in runs: +1, +2, +3, +4, then +5, +6, +7, +8, and so on. A single term undercuts the expected addition, revealing itself as the odd one out.
Given Data / Assumptions:
Concept / Approach:
Compute successive differences and match them against the intended ladder. The incorrect step will be short by the expected increment.
Step-by-Step Solution:
5 − 4 = +17 − 5 = +210 − 7 = +314 − 10 = +418 − 14 = +4 (should be +5) ✗25 − 18 = +7 (as if the ladder resumed later)32 − 25 = +7 (should be +8 if continuing strictly)
Verification / Alternative check:
If 18 were 19 (adding +5 correctly), the next should be +6 to 25, then +7 to 32, and +8 would follow. The earliest break is at 18, making it the odd term.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
18
Discussion & Comments