Difficulty: Easy
Correct Answer: 64
Explanation:
Introduction / Context:
This sequence adds consecutive odd numbers to generate each next term. Identifying a single break in that steadily growing odd-difference pattern reveals the odd term.
Given Data / Assumptions:
Concept / Approach:
Compute differences and compare to the intended odd sequence. The term that fails to reflect the correct next odd difference is the odd one out.
Step-by-Step Solution:
5 − 2 = 310 − 5 = 517 − 10 = 726 − 17 = 937 − 26 = 1150 − 37 = 13Next should be +15 ⇒ 50 + 15 = 65 (but given: 64 ✗)
Verification / Alternative check:
Replacing 64 with 65 reestablishes the clean +3, +5, +7, +9, +11, +13, +15 progression. All earlier steps already match this rule perfectly.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
64
Discussion & Comments