Answer:
==================================================
Step-by-step explanation:
The first row
indicates the first term is 10. The small "1" is the index number. That means
is next followed by
and so on.
To generate the next term, we follow this recursive step:
It means "whatever the nth term
is, we add 4 to it to get the next term
"
In other words, we add 4 to each term to get the next term.
Eg: 10+4 = 14 and 14+4 = 18
The recursive step could be rewritten as
based on how you frame things.