Answer:
Recursive sequence
Explanation:
Explanation:-
- Each next term was gotten by adding a previous two terms .This sort of sequence is called the recursive sequence.
- Example:- 1, 1, 2,3,5,8.........
The first two terms are adding and we get the third term
In above example first term is '1' and second term also '1'
adding these two terms we get the third term is '2'
and same as adding second term and third term we get the fourth is "3"
- This sequence is called the Fibonacci sequence and also it is called the recursive sequence.