Ask a New Question
Search
Recursion formula for a given
In the recursive Python code below, what section of code represents the base case?
def recursion(k): if(k > 0): result = k +
1 answer
32 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
39 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
50 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
37 views
Recursion formula
1 answer
asked by
Fuad Faji Jemal
136 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,371 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,686 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
748 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
38 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
52 views