answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What the recursive function that describes the sequence 1 5 9 13 17?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the recursive definition for 5 9 13 17 21?

Let f(x) = the xth term in your sequence. If x = 1, then f(x) = 5; otherwise if x > 1, then f(x) = f(x - 1) + 4.


What is the nth term of the sequence 3 -1 -5 -9 -13 -17?

If you notice, there is a common difference between the terms: tn - tn-1 = -4 So the nth term is: tn = tn-1 - 4 For this recursive sequence to be defined though, you need something to start with as your tn-1. So start with t1= 3 and you're done.


What is the answer identify the correct function for the following sequence 18 5 -8 -21?

Subtract -13 at each consecutive term and so the next term will be -34


What is the next number in the sequence 5-7-13-31?

The next number in the sequence 5-7-13-31 is 69.


Is 13 17 21 25 29 a geomertic sequence or a arithmetic sequence?

Arithmetic


Which term describnes the beginning of the menstrul function that occurs at the onset of puberty?

The term menarche describes onset of menstruation. This is usually charachterisic of age 12 or 13.


What term during puberty describes the beginning of the menstrual function?

Well, the menstruation starts at the age of 12-13 in girls. The term for onset of menstruation is menarche .


How do you solve x2 y2 13?

There is no single solution for x2 + y2 = 13, as there are an infinite number of corresponding values that could be plugged in for x and y. x2 + y2 = 13 is a function that describes a circle. The circle would have a center point of 0, 0, and a radius of √13.


What number is next in this sequence 3 4 6 9 13?

The nest number in the sequence is 18. Note that the difference between each number and the next number in the sequence follows the simple sequence of 1,2,3,4. Obviously the next in the sequence of increases is 5, so 13+5=18.


Is the sequence 1 4 8 13 19 26 an arithemtic or geometric sequence?

arithmetic


What is next in the sequence 4 6 9 13?

After 13, it's 18.


What are the advantages of using a recursive function in c?

Advantages:Through Recursion one can Solve problems in easy way whileits iterative solution is very big and complex.Ex : tower of HanoiYou reduce size of the code when you use recursive call.Disadvantages :Recursive solution is always logical and it is verydifficult to trace.(debug and understand)Before each recursive calls current values of the variblesin the function is stored in the PCB, ie process controlblock and this PCB is pushed in the OS Stack.So sometimes alot of free memory is require for recursivesolutions.Remember : whatever could be done through recursion could bedone through iterative way but reverse is not true.