Give a recursive definition of the sequence an where an n12
Give a recursive definition of the sequence {an} \"where\" an = (n+1)2
Solution
Recursive defination means to answer in terms of previous term.
Given:- an=(n+1)2
Then, an-1=n2
So, we may write an = n2 + 2n +1
= an-1 + (2n+1) for n>1 and a1 = 4
whihc is required recursive form
