answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the third term of the sequence defined by the recursive rule f(1)2 f(n) f(n-1) plus 1?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

A certain arithmetic sequence has the recursive formula an equals an-1 plus d If the common difference between the terms of the sequence is -11 what term follows the term that has the value 11?

an = an-1 + d term ar-1 = 11 difference d = -11 ar = ar-1 + d = 11 - 11 = 0 The term 0 follows the term 11.


Is m x plus b a recursive equation?

Without an equality sign it is no kind of an equation at all.


What is the sequence to -10 -2 plus 6 plus?

15


What does the recursive equation an equals an - 1 plus d mean?

It means that each number in the sequence is formed from the previous number by adding d to it. So, 1, 1+d, 1+2d, 1+3d, etc or 4, 4+d, 4+2d, 4+3d, etc


Write a Recursive Function in C plus plus?

void infinte (long l) { printf ("I will never stop #%ld\n", l); infinte (l+1); }


What is solution of 1 plus 3 plus 5..100?

The sequence is poorly defined. 1+3+5 appears to be a sequence of odd numbers. However, that cannot end in 100: it can attain the values of 99 or 101. Obviously the answer will depend on which one of these is the final number. An alternative is that the sequence is not that of odd numbers but some other sequence: for example, t(n) = (29n3 - 174n2 + 399n - 214)/40 which, for n = 1, 2, 3, generates the sequence 1, 3, 5, 11.35, 26.4, 54.5, 100 whose sum is 201


What is next in the sequence of numbers 2 plus 4 plus 8 plus 16 plus?

32


What is one third plus two third plus three third?

1/3 plus 2/3 plus 3/3 = two


What are the pre-defined function in c plus plus?

The C++ standard library contains all the pre-defined functions.


What is the explicit rule for An equals An-1 plus 5n-1?

It is not possible to give a conclusive answer because for a recursive relationship of order 1, the first (or 0th) term must be specified.A(n) = (5*n^2 + 3*n + 2*A(1) - 8)/2 for n = 1, 2, 3, ...


What does one third plus one third plus one third equals?

1 whole, or 1


Can you have the program in C plus plus for recursive function generating a series of terms?

Yes, this can be done. For example for Fibonacci series. You will find plenty of examples if you google for the types of series you need to be generated.