Difficulty: Easy
Correct Answer: 122
Explanation:
Introduction / Context:
A frequent construction in series questions is “multiply, then add a steadily increasing small integer.” It feels multiplicative but also embeds a linear count, making it both memorable and testable.
Given Data / Assumptions:
Concept / Approach:
Check if 13 = 2*6 + 1; if yes, try 28 = 2*13 + 2; continue to validate. If consistent, extend to find the next term using k = 4.
Step-by-Step Solution:
Verification / Alternative check:
Back-substituting confirms all steps align with +1, +2, +3; therefore +4 is the natural continuation.
Why Other Options Are Wrong:
Common Pitfalls:
Mistaking this for pure doubling or a quadratic; the small additive ladder is the key.
Final Answer:
122
Discussion & Comments