208k views
3 votes
How to solve a sequence

User Grosser
by
8.0k points

1 Answer

1 vote

For the first sequence

Let a1 = 2

2, 9, 16, 23, ...

Recursive Formula


a_n=a_(n-1)+7

Explicit Formula


a_n=2+7(n-1)

For the second sequence

Let a1 = 2

2, 14, 98, 686, ...

Recursive Formula


a_n=7(a_n-1)

Explicit Formula


a_n=2\cdot7^(n-1)

User Klinki
by
8.4k points