Ask Question
17 March, 17:38

Which recursive definition represents the sequence {2, 3, 5, 9, 17 ... }?

+5
Answers (1)
  1. 17 March, 18:52
    0
    Let's analyze the sequence: {2,3,5,9,17 ... }.

    3 = 2+1

    5 = 3+2

    9=5+4

    17=9+8

    So, every element of the sequence is obtained as sum from the previous element + (previous element - 1)

    y[n]=y[n-1] + (y[n-1]-1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which recursive definition represents the sequence {2, 3, 5, 9, 17 ... }? ...” in 📙 Mathematics if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers