Ask a New Question
Search
Recursion formula
In the recursive Python code below, what section of code represents the base case?
def recursion(k): if(k > 0): result = k +
1 answer
22 views
In the recursive Python code below, what section of code represents the base case?
def recursion(k): if(k > 0): result = k +
1 answer
28 views
Write a formula for the nth term of the infinite sequence. Do not use a recursion formula. 4,16,64,256,1024
1 answer
43 views
Write a formula for the nth term of the infinite sequence. Do not use a recursion formula. 4,16,64,256,1024
A. An=12n-4 B. An=4^n
1 answer
31 views
Recursion formula
1 answer
asked by
Fuad Faji Jemal
130 views
Write the first four terms of the sequence defined by the recursion formula.
a1 = 6 and an = 3an-1 for n ≥ 2
2 answers
asked by
Peter
1,351 views
Write a formula for the general term (the nth term) of the arithmetic sequence shown below. Do not use a recursion formula. Then
1 answer
asked by
Dee
1,652 views
The sequence is defined by a recursion formula.Write the first four terms;
a_1=-5; a_n=2a_n-1 +7
1 answer
asked by
Nan
728 views
Write the first four terms of the sequence defined by the recursion formula. A1=2 and an=an-1^(-3) for n is greater or equal to
1 answer
30 views
Write the first four terms of the sequence defined by the recursion formula. A1=2 and an=an-1^-3 for n is greater or equal to 2
A
3 answers
43 views