Asked by Vic
How to write a recursive rul for sequences. ex.) 1,3,4,7,11
Answers
Answered by
bobpursley
n= (n-1)+(n-2)
Answered by
Reiny
looks like a variation of the Fibonacci numbers.
in this one
Term(n+2) = term(n) + term(n+1),
where term(1) = 1
term(2) = 2
n > 2
in this one
Term(n+2) = term(n) + term(n+1),
where term(1) = 1
term(2) = 2
n > 2
There are no AI answers yet. The ability to request AI answers is coming soon!
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.