SOLUTION: Find the first three terms of the recursively defined sequence. a1 = 5, a(n) = na(n−1)

Algebra.Com
Question 1178668: Find the first three terms of the recursively defined sequence.
a1 = 5, a(n) = na(n−1)

Answer by greenestamps(13200)   (Show Source): You can put this solution on YOUR website!


The statement

a(n) = na(n-1)

means that, for each integer n greater than 1, the n-th term is n times the previous term.

Given a(1)=5, use that definition to find a(2); then use the definition again to find a(3).

Here is an example if you don't understand that....

a(1) = 4; a(n) = n*a(n-1)+1

The second statement says to get the n-th term of the sequence you multiply the current term by n and add 1.

given first term: 4
second term: multiply 1st term (4) by n (2) and add 1: 4(2)+1 = 9
third term: multiply second term (9) by n (3) and add 1: 9(3)+1 = 28
fourth term: 28(4)+1 = 113


RELATED QUESTIONS

to find the first 3 terms of the Recursively defined sequence: a1=5 , an=2a n-1 for... (answered by Fombitz,jim_thompson5910)
The sequence is defined recursively. Write the first four terms.... (answered by Fombitz)
The system is defined recursively. Write the first four terms.... (answered by jim_thompson5910)
A sequence is defined recursively by the given forumlas. Find the first 5 terms. an=... (answered by ikleyn)
If a sequence is defined recursively by f(1)= -2 and f(n-1) = 3(n-1)-4, then find the... (answered by ikleyn)
The sequence is defined recursively. Write the first five terms. {{{a[1]=-3}}};... (answered by Edwin McCravy)
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)
The sequence is defined recursively. Write the first four terms a1 = 3; an = 3an-1 + 4 (answered by robertb)