SOLUTION: find the first five values of the recursive function f(1)= 5; f(n) = f(n-1) + n

Algebra.Com
Question 419448: find the first five values of the recursive function
f(1)= 5; f(n) = f(n-1) + n

Answer by stanbon(75887)   (Show Source): You can put this solution on YOUR website!
find the first five values of the recursive function
-------------------------------
f(1)= 5;
f(n) = f(n-1) + n
f(1) = 5
f(2) = 5 + 2 = 7
f(3) = 7 + 3 = 10
f(4) = 10 + 4 = 14
f(5) = 14 + 5 = 19
-----------------------
Cheers,
Stan H.
===========

RELATED QUESTIONS

Find the 1st 5 values of the recursive function, then find their 1st and 2nd differences, (answered by drk)
Find the first three terms of f(n + 1) = f(n) + 8, if f(1) = 27. (answered by ewatrrr)
A sequence has its first term equal to 4, and each term of the sequence is obtained by... (answered by ikleyn)
the recursive rule for a sequence is f(n) = f(n-1)/2 +5. The first term is 4. What is the (answered by ewatrrr)
Given the formula f(n) = 3(-1)n find the first 5 terms of this... (answered by fractalier)
If f(1)=9 and f(n)=-3f(n-1)+n then find the value of... (answered by ewatrrr,ikleyn)
List the first five terms of the sequence. f(n+1)=2f(n)+n. Where f(1)=1, for n... (answered by jim_thompson5910)
I am working with recursive functions. I do not understand the examples given in the... (answered by stanbon)
The following function defines a recursive sequence: f(0) = -4 f(1) = 12 f(n) =... (answered by jim_thompson5910)