answersLogoWhite

0


Best Answer

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

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the recursive formula for 2 1 3 4 7 11?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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 -14 -8 -2 4 10?

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


What is analysis of recursive program?

1) Recursive algorithms 2) Basic Principle 3) Analysis


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


Can a recursive formula produce an arithmetic or geometric sequence?

arithmetic sequence * * * * * A recursive formula can produce arithmetic, geometric or other sequences. For example, for n = 1, 2, 3, ...: u0 = 2, un = un-1 + 5 is an arithmetic sequence. u0 = 2, un = un-1 * 5 is a geometric sequence. u0 = 0, un = un-1 + n is the sequence of triangular numbers. u0 = 0, un = un-1 + n(n+1)/2 is the sequence of perfect squares. u0 = 1, u1 = 1, un+1 = un-1 + un is the Fibonacci sequence.


What is a Recursive Formula in mathematics?

It is a formula, used in sequences, in which the value of the nth term is described in relation to one or more of the earlier terms. A classic example is the Fibonacci sequence: u(1) = 1 u(2) = 1 u(n) = u(n-1) + u(n-2) for n = 3, 4, 5, ...


What is the difference between a recursive and an explicit formula?

a recursive formula is always based on a preceding value and uses A n-1 and the formula must have a start point (an A1) also known as a seed value. unlike recursion, explicit forms can stand alone and you can put any value into the "n" and one answer does not depend on the answer before it. we assume the "n" starts with 1 then 2 then 3 and so on arithmetic sequence: an = a1 + d(n-1) this does not depend on a previous value


What is the maximum depth of recursive calls a function may make?

Recursive function call depend your primary memory space because the recursive call store in stack and stack based on memory.


Recursive rule for the Fibonacci sequence?

x1=0 x2=1 for i > 2, xi= xi-1 + xi-2


Why is Fibonacci recursive?

Each term, except the first two, in the Fibonacci sequence is defined in terms of terms that went earlier in the sequence. That is the meaning of "recursive". t(1) = 1 t(2) = 1 t(n+2) = t(n) + t(n+1) for n = 1, 2, 3, ...