Recursive and Explicit Formulas- Sequences Explained

What Sequences Actually Are

A sequence is just a list of numbers in a specific order. That's it. You have a first term, a second term, a third term, and so on. Each term has a position: first, second, third, and the position number tells you which term you're looking at.

Sequences show up everywhere. Compound interest, population growth, the bounce height of a ball—these are all sequences. The question is: how do you find any term you want without listing every single one?

That's where formulas come in. You need a way to calculate any term based on its position. There are two main ways to do this: explicit formulas and recursive formulas. Each works differently.

Explicit Formulas: Find Any Term Directly

An explicit formula gives you the nth term directly. You plug in the position number n, and you get the term's value. No other information required.

Think of it like a vending machine. You press the button for item number 7, and you get item 7 immediately. You don't need items 1 through 6 first.

The General Form

Explicit formulas typically look like:

an = expression in terms of n

Where an means "the nth term" and n is the position in the sequence.

Common Explicit Formulas

Example: Finding the 50th Term

Say you have the sequence 3, 7, 11, 15, 19... This is arithmetic with a first term of 3 and a common difference of 4.

Your explicit formula is: an = 3 + (n-1) · 4

To find the 50th term: a50 = 3 + (50-1) · 4 = 3 + 196 = 199

One calculation. Done. That's the power of explicit formulas.

Recursive Formulas: Build From What Came Before

A recursive formula tells you how to get from one term to the next. You need the previous term(s) to find the current term. It's like a domino chain—each domino knocks over the next one.

Recursive formulas always need a starting point. Without that, you have nothing to build from.

The General Form

Recursive formulas look like:

a1 = starting value
an = relationship using previous terms

Example: Same Sequence, Different Approach

For 3, 7, 11, 15, 19... the recursive formula is:

a1 = 3
an = an-1 + 4

To find the 50th term, you'd need to calculate terms 1 through 49 first. That's 49 calculations just to get to the one you want. Slow.

Why Recursive Formulas Exist

They model how things actually change in real life. A population doesn't know the population size 100 years from now—it grows based on the current population. Recursive formulas capture that dependency.

Explicit vs Recursive: The Direct Comparison

FeatureExplicit FormulaRecursive Formula
How it worksCalculate any term directly from nCalculate each term from previous terms
Starting pointNot required (just plug in n)Required (a₁ or base case)
Finding term nOne calculationn-1 calculations
Best forQuick answers to "what is term X?"Modeling processes that build on themselves
Computer efficiencyO(1) per termO(n) to find term n

Converting Between the Two

Sometimes you have one type and need the other. Here's how to swap them.

Explicit to Recursive

Take an = 3 + (n-1) · 4

You can see the pattern: each term adds 4 to the previous one. So:

a1 = 3
an = an-1 + 4

Recursive to Explicit

Take a1 = 3, an = an-1 + 4

Expand it out:

Pattern emerges: an = 3 + (n-1) · 4

For geometric sequences, the conversion uses exponents instead: an = a1 · rn-1

How to Write Formulas: Getting Started

Here's the practical process for both types.

Writing an Explicit Formula

  1. Identify the pattern. Look at how each term relates to its position number.
  2. Check if it's arithmetic (constant addition) or geometric (constant multiplication).
  3. Find the first term a₁.
  4. Find the common difference d or common ratio r.
  5. Plug into the standard formula and simplify.

Example: Sequence 2, 6, 18, 54...

Writing a Recursive Formula

  1. Identify what operation connects each term to the previous one.
  2. Set the first term as your base case.
  3. Express an in terms of an-1.

Example: Sequence 100, 90, 80, 70...

Common Mistakes to Avoid

Which Formula Type Should You Use?

Use explicit when you need fast answers. If someone asks "what's the 1000th term?", explicit gets you there in one step.

Use recursive when you're modeling real-world processes or when the pattern naturally builds on itself. Fibonacci sequences, loan amortization, viral spread—these are recursive by nature.

Sometimes you'll need both. A recursive definition might be easier to derive, but an explicit formula is what you use to actually compute values. Know when to convert.

That's the core of it. Explicit gives you direct access. Recursive builds step by step. Pick the right tool for what you're actually trying to do.