How To Work Out The Nth Term In A Sequence

10 min read

Why Do You Need to Find the Nth Term?

Let’s be honest — most people think math is just about crunching numbers. But here’s the thing: figuring out the nth term in a sequence isn’t just a classroom exercise. It’s a skill that helps you spot patterns, make predictions, and solve real problems. Whether you’re analyzing trends in data, coding algorithms, or just trying to figure out how many tiles you’ll need for the 100th row of a pattern, knowing how to work out the nth term is gold.

So what exactly is a sequence, and why does its nth term matter?

What Is the Nth Term in a Sequence?

A sequence is just a list of numbers (or objects) that follow a specific pattern. Think of it like a recipe: each term is a step, and the pattern tells you how to get from one step to the next.

The nth term is a formula that lets you calculate any term in the sequence without listing them all out. Instead of adding 2 each time to find the 100th term, you plug in 100 into your formula and — boom — you’ve got the answer No workaround needed..

Sequences can be simple or complex. Some go up by the same amount each time. In real terms, others multiply, square, or follow trickier rules. But the goal is always the same: find the pattern, write the formula, and use it.

Arithmetic Sequences: The Steady Climb

These are the easiest kind. In an arithmetic sequence, each term increases (or decreases) by a constant amount.

Example: 3, 7, 11, 15, 19…

Each term goes up by 4. That constant number is called the common difference (d).

To find the nth term:
aₙ = a₁ + (n – 1)d

Where:

  • aₙ = the nth term you’re looking for
  • a₁ = the first term
  • n = the term number
  • d = the common difference

So for the sequence above:
aₙ = 3 + (n – 1)(4)
Simplify: aₙ = 3 + 4n – 4
Final formula: aₙ = 4n – 1

Check it:

  • n = 1 → 4(1) – 1 = 3 ✓
  • n = 2 → 4(2) – 1 = 7 ✓
  • n = 5 → 4(5) – 1 = 19 ✓

Easy, right? But not all sequences play by these rules.

Geometric Sequences: Multiplicative Patterns

Here, each term is multiplied by a constant number. Think: 2, 6, 18, 54…

Each term is multiplied by 3. That’s your common ratio (r).

The nth term formula is:
aₙ = a₁ × r^(n–1)

For the sequence above:
aₙ = 2 × 3^(n–1)

Check it:

  • n = 1 → 2 × 3⁰ = 2 × 1 = 2 ✓
  • n = 3 → 2 × 3² = 2 × 9 = 18 ✓

This works for exponential growth, population models, compound interest — you name it.

Quadratic Sequences: When the Pattern Isn’t Linear

Now we’re getting into trickier territory. Consider this: these sequences don’t have a constant difference or ratio. Instead, the difference between terms changes at a steady rate And that's really what it comes down to..

Example: 2, 5, 10, 17, 26…

Let’s look at the differences:
5 – 2 = 3
10 – 5 = 5
17 – 10 = 7
26 – 17 = 9

The differences are: 3, 5, 7, 9… which increase by 2 each time. That means this is a quadratic sequence, and its nth term follows a formula like:
aₙ = an² + bn + c

Finding a, b, and c takes a few steps:

  1. Write out the first few terms and their positions:

    • n = 1 → 2
    • n = 2 → 5
    • n = 3 → 10
  2. Plug them into the quadratic formula:

    • a(1)² + b(1) + c = 2 → a + b + c = 2
    • a(2)² + b(2) + c = 5 → 4a + 2b + c = 5
    • a(3)² + b(3) + c = 10 → 9a + 3b + c = 10
  3. Solve the system of equations (more on that later) Simple, but easy to overlook..

Turns out: a = 1, b = 0, c = 1

So the formula is: aₙ = n² + 1

Check it:

  • n = 4 → 4² + 1 = 17 ✓
  • n = 5 → 5² + 1 = 26 ✓

Neat. But how did we solve those equations?

How to Work Out the Nth Term: Step by Step

Let’s break it down into a clear process you can follow every time.

Step 1: Identify the Type of Sequence

Look at the numbers. Ask yourself:

  • Is the difference between terms constant? Consider this: → Arithmetic
  • Is each term multiplied by the same number? → Geometric
  • Are the differences themselves changing by a constant amount?

This step is crucial. Jumping to the wrong formula wastes time.

Step 2: Use the Right Formula

Once you know the type, grab the corresponding formula:

  • Arithmetic: aₙ = a₁ + (n – 1)d
  • Geometric: aₙ = a₁ × r^(n–1)
  • Quadratic: aₙ = an² + bn + c

For quadratic sequences, you’ll need to find a, b, and c.

Step 3: Find the Missing Pieces

For arithmetic and geometric sequences, you need:

  • The first term (a₁)
  • The common difference (d) or ratio (r)

For quadratic sequences, you need to solve for a, b, and c using the first three terms.

Step 4: Solve the System of Equations

This is where many people get stuck. Let’s say you have:

  • a + b + c = 2
  • 4a + 2b + c = 5
  • 9a + 3b + c = 10

Subtract the first equation from the second:
(4a + 2b + c) – (a + b + c) = 5 – 2
3a + b = 3 → Equation (4)

Subtract the second from the third:
(9a + 3b + c) – (4a + 2b + c) = 10 – 5
5a + b = 5 → Equation (5)

Now subtract Equation (4) from Equation (5):
(5a + b) – (3a + b) = 5 – 3
2a = 2 → a = 1

Plug back into Equation (4):
3(1) + b = 3 → b = 0

Plug a and b into the first equation:
1 + 0 + c = 2 → c = 1

So: a = 1, b = 0, c = 1 → aₙ = n² + 1

Step 5: Test Your Formula

Always plug in a few values of n to make sure your formula works. If n = 1 gives you the first term, and n = 2 gives you the second, you’re golden.

Common Mistakes (And How to Avoid Them)

Here’s what most people get

Here’s what most people get wrong – and how to sidestep those pitfalls.

1. Forgetting that the constant c is part of the system

When you write the three equations for a quadratic sequence, the c term appears in every one. Dropping it (treating it as zero) throws the whole solve‑off. Keep c in every line until the very end, then isolate it in the final step.

2. Mixing up the term positions

It’s easy to label the first term as n = 0 instead of n = 1. The quadratic formula assumes the first term corresponds to n = 1. If you start at 0, the coefficients you calculate will be off by a constant shift, and the resulting formula won’t generate the original series The details matter here..

3. Assuming the “a” coefficient must be 1

Many sequences do happen to have a = 1 (as in the example you worked through), but that’s not a rule. If the three terms you plug in give you a different a, accept it. Take this case: the series 3, 8, 15, 24 … yields a = 1, b = 2, c = 0, so the formula is n² + 2n, not n² + 1 That's the whole idea..

4. Skipping the verification step

Even after you’ve solved for a, b and c, plug in at least two additional values of n that weren’t used in the setup. If the formula fails for n = 4 or n = 5, you’ve made an algebraic slip somewhere Worth knowing..

5. Relying on guesswork for higher‑order sequences

Quadratic patterns are identified by a constant second‑difference. If the second differences aren’t constant, the sequence isn’t quadratic; trying to force a n² + bn + c model will only lead to frustration. Always confirm the pattern first Nothing fancy..


A Quick Second Example

Consider the numbers 4, 9, 16, 25, …

  1. Check the differences – first differences are 5, 7, 9, …; second differences are 2, 2, … constant → quadratic The details matter here..

  2. Set up equations using the first three terms (n = 1, 2, 3):

    [ \begin{aligned} a + b + c &= 4 \ 4a + 2b + c &= 9 \ 9a + 3b + c &= 16 \end{aligned} ]

  3. Solve – subtract the first from the second: 3a + b = 5 (eq A).
    Subtract the second from the third: 5a + b = 7 (eq B).
    Subtract A from B: 2a = 2 → a = 1.
    Plug back into A: 3(1) + b = 5 → b = 2.
    Finally, 1 + 2 + c = 4 → c = 1 Less friction, more output..

  4. Resulting formula: aₙ = n² + 2n + 1 = (n + 1)².
    Test: n = 4 → (4 + 1)² = 25, which matches the fourth term Not complicated — just consistent..


Wrapping It Up

Finding the nth term of a quadratic

Putting It All Together

When the second‑difference is constant, the sequence is guaranteed to follow a quadratic pattern. The goal is to translate that pattern into a clean closed‑form expression (a_n = an^2 + bn + c). The steps are straightforward, but each deserves a moment of careful attention:

  1. Confirm the quadratic nature – compute the first and second differences. If the second differences level off to a single number, you have a quadratic sequence.
  2. Choose three term positions – the simplest is to use the first three terms (n = 1, 2, 3). This gives three linear equations in the unknowns (a, b, c).
  3. Solve the system – subtract equations to eliminate (c) and (b) step‑by‑step, or use any linear‑algebra method you prefer. The result will be the exact coefficients.
  4. Validate the formula – plug in at least two extra index values (n = 4, 5, …) that were not part of the original system. If the generated numbers match the sequence, the derivation is correct.

A Final Worked Example

Take the sequence 5, 12, 21, 32, 45, … And that's really what it comes down to..

n aₙ
1 5
2 12
3 21
4 32
5 45

Step 1 – Differences
First differences: 7, 9, 11, 13 → second differences: 2, 2, 2 (constant).

Step 2 – Set up equations (using n = 1, 2, 3)

[ \begin{aligned} a + b + c &= 5 \ 4a + 2b + c &= 12 \ 9a + 3b + c &= 21 \end{aligned} ]

Step 3 – Solve

Subtract the first from the second: (3a + b = 7)  (eq A)
Subtract the second from the third: (5a + b = 9)  (eq B)
Subtract A from B: (2a = 2 \Rightarrow a = 1).
Plug into A: (3(1) + b = 7 \Rightarrow b = 4).
Finally, (1 + 4 + c = 5 \Rightarrow c = 0) Practical, not theoretical..

Step 4 – Formula and verification

(a_n = n^2 + 4n) No workaround needed..

Check:
(n=4) → (16 + 16 = 32) (matches)
(n=5) → (25 + 20 = 45) (matches)

The expression correctly reproduces the entire sequence.

Quick Checklist Before You Call It Done

  • Constant second difference? If not, the sequence isn’t quadratic.
  • Correct indexing? Ensure the first term corresponds to (n = 1).
  • All three equations include (c)? Dropping the constant term is a common slip.
  • Coefficients are realistic? Accept any real numbers for (a, b, c); they need not be integers.
  • Verification performed? Test at least two extra terms.

Why Mastering This Matters

Quadratic formulas appear in many real‑world contexts: projectile motion, area calculations, financial modeling, and algorithm analysis. Even so, being able to extract the underlying (an^2 + bn + c) from a list of numbers lets you predict future values, optimize processes, and understand the rate at which quantities change. The discipline of checking differences, solving linear systems, and validating results builds a solid problem‑solving mindset that extends far beyond sequences.


Conclusion

Finding the nth term of a quadratic sequence is a blend of pattern recognition, algebraic manipulation, and careful verification. Now, by confirming constant second differences, setting up a reliable system of equations, solving for the coefficients, and rigorously testing the resulting formula, you transform a seemingly opaque list of numbers into a clear, predictive expression. With practice, this method becomes second nature, empowering you to tackle more complex mathematical challenges and appreciate the elegant order hidden within seemingly random data.

Up Next

Hot New Posts

Related Territory

You May Enjoy These

Thank you for reading about How To Work Out The Nth Term In A Sequence. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home