Arithmetic Sequence and Series: Formulas, Rules, and Examples

Whenever you add the same number over and over, you’re already using arithmetic sequences. You’ll spot them in patterns like 2, 5, 8, 11, or anytime you want to add up a string of numbers quickly. An arithmetic sequence always jumps by a fixed step between each term. If you add up those terms, you’ve got an arithmetic series, which helps you find the total without slogging through every single addition.

A workspace with a notebook showing arithmetic sequences and series formulas, a calculator, pen, papers with equations, and a computer screen displaying a graph.

Let’s look at how to recognize the “step” that drives a sequence, and how to turn that step into a quick formula for any term you want. I’ll also walk you through a shortcut for summing lots of terms at once, so you don’t waste time on endless arithmetic.

Understanding Arithmetic Sequences

A workspace with an open notebook showing a sequence of numbers, a calculator, pencil, ruler, and a computer screen displaying a graph with evenly spaced points.

Let’s talk about what actually makes an arithmetic sequence tick, how you can find any term, and why that fixed step between numbers is such a big deal.

Definition and Key Characteristics

You get an arithmetic sequence (or arithmetic progression) by starting with a number, then adding the same amount every time. That repeated number? We call it the common difference.

Want to check if a sequence is arithmetic? Subtract one term from the next. If you always get the same result, you’re looking at an arithmetic sequence.

A few things to remember:

  • Term: any single number in the sequence (a1, a2, a3, …).
  • First term: usually called a1 or just a.
  • Common difference: the number you add each time, written as d.
  • Order matters! If you mix up the order, you change the whole sequence.

Quick test:

  • If a2 − a1 = a3 − a2 = … = d, you’ve got an arithmetic sequence.

The Common Difference and Its Role

The common difference d sets the pace for the sequence. When d is positive, the numbers keep getting bigger. If d is negative, the sequence shrinks. When d is zero, every term stays the same.

So, what does d really do?

  • Step size: every new term equals the previous term plus d.
  • The sequence grows or shrinks in a straight line if you graph it.
  • The sign of d matters—a positive d means the sequence climbs, negative means it falls.

If you know two terms in a row, you can find d easily:

  • d = an − an−1

That formula comes in handy when you have later terms and want to figure out the jump between them.

The First Term and General Form

The first term, a1, anchors the whole sequence. It’s where everything starts.

If you want to find any term without listing out the whole sequence, use the general formula:

  • an = a1 + (n − 1)d

Here’s how you use it:

  • Plug in your a1, d, and n to get the nth term.
  • For example, if a1 = 5 and d = 3, then a4 = 5 + (4 − 1)×3 = 14.

Quick reference table

Symbol Meaning
a1 or a First term
d Common difference
n Term position (index)
an nth term value

This formula is a lifesaver when you want the 100th term or something far down the line—no need to write out every step.

Recursive and Explicit Formulas

There are two main ways to describe an arithmetic sequence: recursive and explicit. Each has its perks.

Recursive formula:

  • an = an−1 + d

You need the previous term to use it, usually starting with a1. It’s good if you’re building the sequence one step at a time.

Explicit (closed-form) formula:

  • an = a1 + (n − 1)d

This one gives you any term you want, right away, as long as you know n, a1, and d. It’s great for jumping straight to a specific term or working with algebra.

When should you use each?

  • Recursive works well when you’re modeling step-by-step processes or writing code.
  • Explicit is better for quick calculations, sums, or algebra problems.

Both formulas always come back to the same basics: a1 (first term), d (common difference), and n (which term you want).

Exploring Arithmetic Series

An arithmetic series just means you’re adding up the terms from an arithmetic sequence, following the same pattern. Here’s how you figure out what an arithmetic series is, how to sum it up with a formula, and how partial sums show growth as you go.

What is an Arithmetic Series?

An arithmetic series adds together the terms from an arithmetic sequence—each term changes by the same amount, called the common difference (d).

If you start with a1 and go up to the nth term an, the series looks like: a1 + a2 + … + an.

You can connect the series to the nth term formula: an = a1 + (n − 1)d. That formula gives you the last term you’ll need if you want to sum up to n.

When you know a1, d, and n, you can build the whole series and calculate partial sums easily.

A few words to know:

  • arithmetic series: the sum of the sequence’s terms
  • nth term (an): the last term you include
  • common difference (d): the step between terms
  • partial sum: the sum of the first k terms, often written Sk

Sum Formulas and Calculation Methods

You can find the sum of the first n terms (Sn) with two main formulas. Pick the one that fits what you know—either a1 and an, or a1, d, and n.

First formula (using first and last term):

  • Sn = n*(a1 + an)/2

Second formula (using first term and difference):

  • Sn = n/2 * (2*a1 + (n − 1)*d)

Both will get you to the same answer, since an = a1 + (n − 1)d.

Let’s try an example: a1 = 3, d = 2, n = 5. Then an = 3 + 42 = 11, and Sn = 5(3+11)/2 = 35.

A few tips:

  • If you already know the last term, the first formula is faster.
  • If you know d but not an, use the second formula.
  • For big n, use parentheses so you don’t mess up the arithmetic.

Partial Sums and Applications

A partial sum means you add up the first k terms of a series, and people usually write it as Sk.
Just swap out n for k in the usual Sn formulas to get Sk.

Partial sums actually come up in everyday stuff.
Say, you’re budgeting—you’d add a regular payment over k months.

In construction, you might count materials as you add them in steady amounts.
If you need to find missing arithmetic means between two known terms, you can use the difference d and partial sums.

You can use partial sums to double-check your work.
Try calculating Sk in two ways: first, find an and use Sn = k*(a1+ak)/2.

Or, go with Sk = k/2*(2*a1 + (k−1)*d).
If the numbers match, you know your formulas and arithmetic mean calculations line up.

Similar Posts