asked 192k views
3 votes
A sequence is defined below.

f(0) = 7
f(n) = 2f(n - 1) - 3 for n > 1, where n is an integer
What is the third number in the sequence?

2 Answers

1 vote
i think the answer is 35
answered
User Dstftw
by
7.9k points
5 votes

Answer:

35

Explanation:

f(0) = 7

f(1) = 2f(0) - 3 = 11

f(2) = 2f(1) - 3 = 19

f(3) = 2f(2) - 3 = 35

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.