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.

How do I find the first four terms of the sequence using the recursion formula?

Attachment image

3 Answers

Relevance
  • 2 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

  • ?
    Lv 7
    2 weeks ago

    The first four terms of the sequence

    a1 = 7

    an = a(n - 1) + 5

    n ≥ 2

    7, 12, 17, 22

  • ?
    Lv 7
    2 weeks ago

    a1 = 7

    a2 = a1+5 = 12

    a3 = a2+5 = 17

    a4 = a3+5 = 22

    a5 = a4+5 = 27

    etc.

Still have questions? Get your answers by asking now.