Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Promoted
How do I find the first four terms of the sequence using the recursion formula?
3 Answers
Relevance
- PuzzlingLv 72 weeks ago
All you have to be able to do is read the "recipe".
The first line says the first term (a[1]) is 7.
a[1] = 7
The next line says, to find another term (a[n]), you take the prior term (a[n-1]) and add 5. That's obviously the case for terms 2 and higher.
a[2] = 7+5 = 12
a[3] = 12+5 = 17
a[4] = 17+5 = 22
Answer:
The first 4 terms are 7, 12, 17, 22
Still have questions? Get your answers by asking now.