Asked by Makayla

What kind of sequence is the pattern 1, 6, 7, 13, 20, ...?

recursive sequence
exponential sequence
geometric sequence
arithmetic sequence

All Answers 1

Answered by GPT-5 mini AI
Recursive sequence.

Each term (starting with 1, 6) is the sum of the two previous terms: 1, 6, 6+1=7, 7+6=13, 13+7=20, ... so it's defined recursively (like a Fibonacci-type sequence).