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.
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
| Quantity | Working | Result |
|---|---|---|
| Steps taken | n − 1 = 10 − 1 | 9 |
| a10 | 3 + 9 × 5 | 48 |
| S10, paired | 10/2 × (3 + 48) | 255 |
| S10, expanded | 10/2 × (2×3 + 9×5) | 255 |
| Mean term | S10 ÷ 10 | 25.5 |
THE SHAPE OF IT
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.
Live calculation · updates as you type
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.
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.
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.
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.
| Rule | Formula | What it is for |
|---|---|---|
| nth term | aₙ = a₁ + (n − 1)d | The (n − 1) is the whole difficulty. a₁ + nd gives the next term, not this one. |
| Common difference | d = aₙ₊₁ − aₙ | Constant by definition. If consecutive gaps differ, it is not an arithmetic sequence. |
| From two terms | d = (aₘ − aₙ) ÷ (m − n) | Works for any two terms, not just neighbours. Then back out a₁. |
| Sum, from both ends | Sₙ = n/2 (a₁ + aₙ) | Gauss’s pairing: first with last, second with second-last, each pair equal. |
| Sum, from a₁ and d | Sₙ = n/2 (2a₁ + (n − 1)d) | The same formula with aₙ substituted. Use when the last term is unknown. |
| Sum as a quadratic | Sₙ = (d/2)n² + (a₁ − d/2)n | A parabola in n — which is why the running total can have a turning point. |
| Index of a value | n = (aₙ − a₁) ÷ d + 1 | Must come out a positive whole number, or the value is not in the sequence. |
| Sum of 1 to n | n(n + 1)/2 | The case a₁ = 1, d = 1. Gauss reportedly found it aged nine. |
| Sum of first n odds | n² | a₁ = 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 point | last n with aₙ ≥ 0, when d < 0 | Adding negative terms shrinks the total, so the sum peaks as the terms cross zero. |
| Number of terms | n = (last − first) ÷ d + 1 | Counting a range inclusively. The +1 is the fencepost that gets forgotten. |
| Not geometric | arithmetic adds d; geometric multiplies by r | Check differences for one, ratios for the other. Only a constant sequence is both. |
| Zero difference | d = 0 ⟹ aₙ = a₁ for all n | Still an arithmetic sequence. The sum is simply n × a₁. |
24 Times Table
Calculate instantly →
Quadratic Equation Solver
Calculate instantly →
Logarithm Calculator
Calculate instantly →
Fraction Calculator
Calculate instantly →
Fraction Simplifier
Calculate instantly →
Linear Equation Solver
Calculate instantly →
25 Times Table
Calculate instantly →
26 Times Table
Calculate instantly →
27 Times Table
Calculate instantly →
Simultaneous Equations Solver (2×2)
Calculate instantly →
28 Times Table
Calculate instantly →
Exponent Calculator
Calculate instantly →
29 Times Table
Calculate instantly →
30 Times Table
Calculate instantly →
Times Tables Mega Calculator
Calculate instantly →
Square Root of 10
Calculate instantly →
Square Root of 1
Calculate instantly →
Square Root Mega
Calculate instantly →
Square Root of 2
Calculate instantly →
23 Times Table
Calculate instantly →
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.