Recursive squaring pattern: Find the next term in 3, 10, 101, ? Clue: each term is one more than the square of the previous term. Compute the next term explicitly. Choose the correct value.

Difficulty: Easy

Correct Answer: 10202

Explanation:

Recognize the rule an+1 = an2 + 1

Verify 3 → 3² + 1 = 9 + 1 = 10 10 → 10² + 1 = 100 + 1 = 101

Next term 101 → 101² + 1 = 10201 + 1 = 10202

More Questions from Series Completion

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion