To define a sequence recursively, we need a . This type of rule gives the beginning term or terms of a sequence, and a
recursive equation tells how the
nth term,
an, is related to one or more preceding terms. For example, let's choose two initial terms.
Example initial termsa1=1 and a2=2
Now, we just need to define a relation that tells us how to obtain the next term from these initial terms chosen. By writing this relation algebraically we obtain the sequence's recursive equation. The relation can be any. For example, the next term is the product of the two previous terms.
Recurisive Equationan=(an−1)(an−2)
For this example, this recursive rule defines the recursive sequence shown below.
1,2,⟶1⋅22,⟶2⋅24,⟶2⋅48,⟶4⋅832,…