Arithmetic Sequence Calculator

An arithmetic sequence adds the same amount each step. The nth term is a₁ + (n − 1)d, and the first n terms add to n/2 times (a₁ + aₙ). The (n − 1) is where nearly every mistake happens. The first term has taken no steps yet, so the fifth term is the first plus four differences, not five. Writing a...

It is (n − 1)d, not nd. The first term has taken no steps yet, so a₅ is a₁ plus four differences rather than five. Writing a₁ + nd returns the next term every time — it is the single commonest error in the topic, and it is always wrong by exactly one step.

THE SEQUENCE

how many terms

aₙ = 3 + (n − 1)(5)

a10

48

S10

255

a10 takes 9 steps of 5 from 3, not 10. The sum is 10/2 × (3 + 48).

The terms. 3, 8, 13, 18, 23, 28, 33, 38, 43, 48

QuantityWorkingResult
Steps takenn − 1 = 10 − 19
a103 + 9 × 548
S10, paired10/2 × (3 + 48)255
S10, expanded10/2 × (2×3 + 9×5)255
Mean termS10 ÷ 1025.5

THE SHAPE OF IT

THE TERMS — A STRAIGHT LINE, BECAUSE EACH STEP IS THE SAMEn = 1n = 10red dots are negative terms

The terms lie on a straight line and their running total does not. Each step adds the same amount, so the terms are linear in n; but the sum accumulates a growing quantity, which makes it quadratic. That is the whole reason a total can peak and then fall while the terms are still perfectly regular.

THE RUNNING TOTAL — A PARABOLA, NOT A LINE2550n = 1n = 10the terms never change sign, so the total only moves one way
FIRST WITH LAST, SECOND WITH SECOND-LASTevery pair adds to the same total — which is where n/2 (a₁ + aₙ) comes from5 pairs of 51

Live calculation · updates as you type

Created with❤️byeaglecalculator.com

HOW TO USE

  1. 1

    Give the first term and the common difference, or give any two terms and let the page work them out. Two terms need not be adjacent — the difference is the change in value divided by the change in position.

  2. 2

    Set how many terms you want. Positions are whole numbers, so a fractional n is rounded down rather than interpolated: there is nothing between the fourth term and the fifth.

  3. 3

    Look at the running total, not just the last term. Where the sequence changes sign the total turns, and the page names the position where it does.

  4. 4

    Use the third mode to test whether a particular value appears. The formula always returns a number; only a positive whole one means the value is genuinely in the sequence.

REFERENCE FORMULAS

RuleFormulaWhat it is for
nth termaₙ = a₁ + (n − 1)dThe (n − 1) is the whole difficulty. a₁ + nd gives the next term, not this one.
Common differenced = aₙ₊₁ − aₙConstant by definition. If consecutive gaps differ, it is not an arithmetic sequence.
From two termsd = (aₘ − aₙ) ÷ (m − n)Works for any two terms, not just neighbours. Then back out a₁.
Sum, from both endsSₙ = n/2 (a₁ + aₙ)Gauss’s pairing: first with last, second with second-last, each pair equal.
Sum, from a₁ and dSₙ = n/2 (2a₁ + (n − 1)d)The same formula with aₙ substituted. Use when the last term is unknown.
Sum as a quadraticSₙ = (d/2)n² + (a₁ − d/2)nA parabola in n — which is why the running total can have a turning point.
Index of a valuen = (aₙ − a₁) ÷ d + 1Must come out a positive whole number, or the value is not in the sequence.
Sum of 1 to nn(n + 1)/2The case a₁ = 1, d = 1. Gauss reportedly found it aged nine.
Sum of first n oddsa₁ = 1, d = 2. The odd numbers sum to perfect squares, exactly.
Arithmetic mean(aₘ + aₙ)/2 = a₍₍ₘ₊ₙ₎/₂₎The mean of two terms is the term halfway between, when that index exists.
Turning pointlast n with aₙ ≥ 0, when d < 0Adding negative terms shrinks the total, so the sum peaks as the terms cross zero.
Number of termsn = (last − first) ÷ d + 1Counting a range inclusively. The +1 is the fencepost that gets forgotten.
Not geometricarithmetic adds d; geometric multiplies by rCheck differences for one, ratios for the other. Only a constant sequence is both.
Zero differenced = 0 ⟹ aₙ = a₁ for all nStill an arithmetic sequence. The sum is simply n × a₁.

FREQUENTLY ASKED QUESTIONS

RELATED CALCULATORS

MORE ALGEBRA CALCULATORS

Was this calculator helpful?

Last updated: August 4, 2026 · aₙ = a₁ + (n − 1)d, and Sₙ is quadratic in n · The running total can peak before the sequence does.