asked 7.3k views
5 votes
Write a recursive formula for the sequence of numbers.

Write a recursive formula for the sequence of numbers.-example-1
asked
User Darigaaz
by
8.8k points

1 Answer

4 votes

9514 1404 393

Answer:

a[1] = 3

a[n] = 2×a[n-1] +1

Explanation:

We observe the first differences are ...

7-3 = 4

15-7 = 8

31-15 = 16

63-31 = 32

The first differences increase by a factor of 2, so we expect the recursive formula will have a term that looks like "2×a[n-1]".

The second term is 2·3+1 = 7.

The third term is 2·7+1 = 15.

This suggests our recursive formula is ...

a[1] = 3

a[n] = 2×a[n-1] +1

answered
User Aric Lasry
by
8.3k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.