Questions

1 / 10

Time
Score

00

Recursive Sequences

What is the next term in the Tribonacci sequence: 0, 0, 1, 1, 2, ...? 

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 ___________.

Which of the following is not a recursive sequence?

Recursive definition: a1=2, an+1=3an, n >1 ,What is a3?

Fill in the blank:

Recursive definition: a0=0,an=2an-1+1.Terms of sequence are___________.

Recursive definition: a1=1, an+1=an+n, n >1, What is a5?

Recursive definition: a1=0,a2=1,an=an-1+an-2,n >2. Terms of sequence are:

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?

Which recursive sequence starts with the terms 1, 1 and each subsequent term is the sum of the two preceding terms?