SOLUTION: the sequence is defined recursively. Write the first five terms. a1=2, a2=5; an=an-2 - 3an-1.

Algebra.Com
Question 614863: the sequence is defined recursively. Write the first five terms.
a1=2, a2=5; an=an-2 - 3an-1.

Answer by ashipm01(26)   (Show Source): You can put this solution on YOUR website!
The first two terms, a[1] and a[2], are the base cases. The following terms of the sequence are defined in terms of previous terms of the sequence (recursive sequence).

So the first two terms are given in the problem statement:
a[1] = 2
a[2] = 5

The next term, a[3], is given by a[3-2] - 3 * a[3-1].
a[3] = a[3-2] - 3 * a[3-1]
= a[1] - 3 * a[2]
= 2 - (3*5)
= -13

Then a[4] is given in terms of a[4-2] and q[4-1]:
a[4] = a[4-2] - 3 * a[4-1]
= a[2] - 3 * a[3]
= 5 - (3 * -13)
= 44

Likewise, a[5] is given in terms of a[5-2] and a[5-1]:
a[5] = a[5-2] - 3 * a[5-1]
= a[3] - 3 * a[4]
= -13 - (3 * 44)
= -145

So the first five terms in the sequence are: {2, 5, -13, 44, -145}

RELATED QUESTIONS

The sequence is defined recursively. Write the first four terms a1 = 3; an = 3an-1 + 4 (answered by robertb)
The sequence is defined recursively. Write the first four terms.... (answered by Fombitz)
Write the first five terms of the sequence defined recursively. a0 = −1, a1 = 5, ak... (answered by ikleyn)
Write the next four terms of the sequence defined recursively. a1=14... (answered by greenestamps)
Find the first five terms of the recursively defined infinite sequence. a1=2,... (answered by dfrazzetto)
Find the first five terms of the recursively defined infinite sequence. a1=2,... (answered by stanbon)
a1=135 and an+1=1/3 (an)for n>or=2 The sequence is defined recursively. Write the first... (answered by aaaaaaaa)
The system is defined recursively. Write the first four terms.... (answered by jim_thompson5910)
Find the first 40 terms of the sequence defined by A(n+1) = {(1/2)An if An is an odd... (answered by Edwin McCravy)