469,114 views
3 votes
3 votes
Find the first five terms of the sequence

defined recursively as follows: t₁ = 1,
tn = 3(t(n-1)), n≠1, n is a natural number.

User Serhii Bohutskyi
by
3.0k points

1 Answer

20 votes
20 votes

Answer:

1, 3, 9, 27, 81

Explanation:

using the recursive rule


t_(n) = 3
t_(n-1) with t₁ = 1 , then

t₂ = 3 × t₁ = 3 × 1 = 3

t₃ = 3 × t₂ = 3 × 3 = 9

t₄ = 3 × t₃ = 3 × 9 = 27

t₅ = 3 × t₄ = 3 × 27 = 81

the first 5 terms are 1, 3, 9, 27, 81

User Maulik Dodia
by
3.3k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.