Recursive Sequence — Definition, Formula & Examples
A recursive sequence is a sequence where each term is defined by applying a rule to one or more of the terms that came before it. You need at least one starting value (called an initial condition) plus the rule to generate the entire sequence.
A sequence is recursive if it is defined by specifying one or more initial terms together with a recurrence relation that expresses each subsequent term as a function of the preceding terms.
Key Formula
Where:
- = The nth term of the sequence
- = One or more preceding terms used to compute the next term
- = The recurrence rule that relates each term to previous terms
How It Works
To use a recursive sequence, start with the given initial term(s). Plug those values into the recurrence relation to find the next term. Then use that new term to find the one after it, and so on. For example, the Fibonacci sequence uses two initial terms (, ) and the rule . Every arithmetic sequence can also be written recursively as , and every geometric sequence as .
Worked Example
Problem: A recursive sequence is defined by and . Find the first four terms.
Initial term: The first term is given directly.
Find a₂: Substitute into the recurrence relation.
Find a₃: Use the value of .
Find a₄: Use the value of .
Answer: The first four terms are .
Why It Matters
Recursive definitions appear throughout computer science (algorithms, loops, data structures) and mathematical modeling. Population models like the logistic map and financial calculations such as compound interest balances are naturally expressed as recursive sequences.
Common Mistakes
Mistake: Forgetting to state the initial condition and writing only the recurrence relation.
Correction: A recurrence relation alone does not define a unique sequence. Without knowing (or other starting values), infinitely many sequences satisfy the same rule. Always specify the initial term(s).
