Ask Question
28 March, 03:08

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

+2
Answers (1)
  1. 28 March, 03:16
    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?
Find an answer to your question 👍 “Which recursive definition represents the sequence {2, 3, 5, 9, 17 ... }? ...” in 📗 Mathematics if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers