Difficulty: Medium
Correct Answer: 429
Explanation:
Given data
Concept/Approach
The recursive rule follows an increasing multiplier with a concurrent linear subtraction: multiply by n and subtract (n + 1), where n starts at 1 for the move from the first term.
Step-by-step calculation
8 × 1 − 2 = 66 × 2 − 3 = 99 × 3 − 4 = 2323 × 4 − 5 = 87Next uses n = 5: 87 × 5 − 6 = 435 − 6 = 429
Verification/Alternative
The pattern '×n then −(n+1)' consistently reproduces every given transition; extending it yields 429.
Common pitfalls
Final Answer
429
Discussion & Comments