1 / 10
00
What is the next term in the Tribonacci sequence: 0, 0, 1, 1, 2, ...?
4
6
5
Fill in the blank:
Recursive definition: a1=0,a2=0,a3=1,an=an-1+an-2+an-3,n>3.Terms of sequence are ___________.
0, 1, 1, 2, 3, 5, 8, 13, 21, ...
0, 0, 1, 1, 2, 4, 7, 13, 24, ...
0, 1, 1, 8, 13, 21, ...
Which of the following is not a recursive sequence?
Fibonacci sequence
Geometric sequence
Prime numbers
Recursive definition: a1=2, an+1=3an, n >1 ,What is a3?
11
18
Recursive definition: a0=0,an=2an-1+1.Terms of sequence are___________.
0, 1, 3, 7, 15, 31, 63, ...
Recursive definition: a1=1, an+1=an+n, n >1, What is a5?
9
Recursive definition: a1=0,a2=1,an=an-1+an-2,n >2. Terms of sequence are:
0, 1, 1, 2, 5, 8, 13, 21, ...
In an arithmetic sequence with a common difference (d) of 4, what is the 5th term if the first term is 2?
Recursive definition: a1=1, an+1=an+3, n >1, What is a5?
7
Which recursive sequence starts with the terms 1, 1 and each subsequent term is the sum of the two preceding terms?
Lucas sequence
It is done.