Ask a New Question

Asked by Lea

What is a recursive definition for the sequence 3, 5, 9, 17, 33.....
My answer was adding muliple of numbers, is this correct?
12 years ago

Answers

Answered by Steve
pretty vague definition.
For more precision, try

T<sub>n+1</sub> = 2T<sub>n</sub> - 1
12 years ago
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions

Give a recursive definition of the function ones(s) which counts the number of ones in a bit string... 3. Write a recursive definition for the sequence below. (1 point) -1,4,9,14,... Write a recursive definition for the sequence 11, 8, 5, 2,… The following is a recursive function:%0D%0A%0D%0Adef countdown(n):%0D%0A if n == 0:%0D%0A... The following is a recursive function: def countdown(n): if n == 0: return else: countdown(n - 1) co... Use the recursive definition to find the first five terms of the arithmetic sequence it defines.... Write a recursive definition for the sequence 8, 6, 4, 2, ... (1 point) a1=8; an= an-1 -2 a... The following is a recursive Python function: def mystery(n): if n == 1: retur... The following is a recursive function: 41,29,17,5….. The recursive function is _________ with A1=__
Ask a New Question
Archives Contact Us Privacy Policy Terms of Use