Difficulty: Medium
Correct Answer: 228
Explanation:
Introduction / Context:
Some series hide a generative rule of the form “multiply by n and add n” with n increasing by 1 each step. The task is to detect the rule and identify which term violates it.
Given Data / Assumptions:
Concept / Approach:
Check consecutive transitions with increasing multipliers and addends: start with ×1 + 1, then ×2 + 2, ×3 + 3, etc. Any mismatch pinpoints the incorrect term.
Step-by-Step Solution:
Verification / Alternative check:
After fixing the fourth transition to 232, all subsequent terms align exactly with the rule ×k + k for k = 5 and k = 6, confirming 228 is the outlier.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming a constant multiplier or missing the incremental +k addend. Always verify every step with the presumed rule.
Final Answer:
228
Discussion & Comments