answersLogoWhite

0

It look like a Fibonacci sequence seeded by t1 = 2 and t2 = 1.

After that the recursive formula is simply tn+1 = tn-1 + tn.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is is a recursive formula?

A recursive formula is one that references itself. The famous example is the Fibonacci function: fib(n) := fib(n-1) + fib(n-2), with the terminating proviso that fib(0) = 0 and fib(1) = 1.


What is the recursive formula for 1 4 13 40 121?

The sequence 1, 4, 13, 40, 121 can be described by a recursive formula. The recursive relationship can be expressed as ( a_n = 3a_{n-1} + 1 ) for ( n \geq 2 ), with the initial condition ( a_1 = 1 ). This means each term is generated by multiplying the previous term by 3 and then adding 1.


What is the recursive formula for -14 -8 -2 4 10?

t(n+1) = t(n) + 6 t(1) = -14


What is the recursive formula for the function f(n) where f(n) is defined as f(n) (f(n/2))?

The recursive formula for the function f(n) is f(n) f(n/2).


What is the recursive formula for the sequence 8101214?

The sequence 8101214 appears to follow a pattern based on the difference between consecutive terms. The differences between the terms are 2, 2, 2, which indicates a constant difference. Therefore, the recursive formula can be expressed as ( a_n = a_{n-1} + 2 ), with the initial term ( a_1 = 8 ).


What is the recursive patterns for 4 and 7 as the first 2 terms?

To establish a recursive pattern starting with 4 and 7 as the first two terms, we can define the sequence such that each subsequent term is the sum of the previous two terms. Thus, the recursive formula would be ( a_n = a_{n-1} + a_{n-2} ) with initial conditions ( a_1 = 4 ) and ( a_2 = 7 ). The next terms would be ( a_3 = 4 + 7 = 11 ), ( a_4 = 7 + 11 = 18 ), and so on. This creates a sequence: 4, 7, 11, 18, ...


What is analysis of recursive program?

1) Recursive algorithms 2) Basic Principle 3) Analysis


What is the third term of the sequence defined by the recursive rule f(1)2 f(n) f(n-1) plus 1?

To find the third term of the sequence defined by the recursive rule ( f(1) = 2 ) and ( f(n) = f(n-1) + 1 ), we first calculate ( f(2) ) using the recursive formula. Since ( f(1) = 2 ), we have ( f(2) = f(1) + 1 = 2 + 1 = 3 ). Next, we calculate ( f(3) ) as ( f(3) = f(2) + 1 = 3 + 1 = 4 ). Thus, the third term of the sequence is ( f(3) = 4 ).


What is the recursive definition of 8 4 2 1?

8/4/2=1


What is a recursive formula and what is it used for Geometric and Arithmetic?

A recursive definition is any definition that uses the thing to be defined as part of the definition. A recursive formula, or function, is a related formula or function. A recursive function uses the function itself in the definition. For example: The factorial function, written n!, is defined as the product of all the numbers, from 1 to the number (in this case "n"). For example, the factorial of 4, written 4!, is equal to 1 x 2 x 3 x 4. This can also be defined as follows: 0! = 1 For any "n" > 0, n! = n x (n-1)! For example, according to this definition, the factorial of 4 is the same as 4 times the factorial of 3. Try it out - apply the recursive formula, until you get to the base case. Note that a base case is necessary; otherwise, the recursion would never end.


What is the formula for Iron 2 iodide?

1+1=11*100


Is 1 11 31 71 151 a recursive pattern?

Oh honey, that's not a recursive pattern, that's just a sequence of numbers increasing by 10 each time. It's like counting by tens but starting at 1 instead of 10. So, no recursion here, just some basic addition.