Audited 29 Jul 2026·Last updated 31 Jul 2026·4 citations·Tier 2·0 uses

Sum of Series Calculator

Evaluate Σ from k = m to n for a linear, power or geometric general term. Handles sums of squares and cubes, and any starting index — not just from 1.

Sum of Series Calculator

What are you summing?
Multiplies k in the linear term, or rᵏ in the geometric term. Ignored in power mode.
Added to every term in linear mode. Ignored in the other two.
Exponent p
Geometric mode only. The base raised to the index. Must not be 0.
The index does not have to start at 1 — this is the thing a plain sequence calculator cannot do.
Must be at least the lower bound. Closed forms are used, so millions of terms cost nothing.
Sum
185
The value of the summation, computed from a closed form rather than by adding term by term.
In sigma notation
Σ from k = 1 to 10 of (3k + 2) = 185
Number of terms
10
First term
5
Last term
32
Average term
18.5

Background.

This calculator evaluates a summation written in sigma notation: pick a general term, set the index bounds, and get the total. It handles three families of general term — linear (Ak + B), power (k, k² or k³), and geometric (A × rᵏ) — and it sums between any two whole-number bounds you like, not just from the beginning.

That last point is the reason this page exists alongside the arithmetic sequence and geometric sequence calculators. Those two pages also report a sum, but always the sum of the first n terms, starting from the first. Neither can answer 'what is the sum of k² from k = 3 to k = 50', because k² is not an arithmetic or a geometric term at all, and neither can start the index anywhere except the beginning. If what you actually want is the nth term of a progression, or whether an infinite geometric series converges, those pages are the right ones and this page links to them — the overlap is real and it is stated rather than hidden.

Every result here comes from a closed form, not from a loop. The three power sums are the ones OpenStax's Calculus Volume 1 publishes as the rule 'Sums and Powers of Integers': the sum of the first n integers is n(n+1)/2, the sum of their squares is n(n+1)(2n+1)/6, and the sum of their cubes is n²(n+1)²/4. Summing between arbitrary bounds then costs one extra subtraction, since the total from m to n is simply the total from 1 to n minus the total from 1 to m − 1. Because none of this involves iterating, you can set the upper bound to ten million and get the answer instantly and exactly.

The exponent stops at 3, and the reason is worth saying plainly rather than burying: the closed forms for k, k² and k³ are the three published in the source this page cites. The sum of fourth powers needs Faulhaber's formula and Bernoulli numbers, and rather than typing a fourth polynomial from memory, the page narrows its scope and the error message tells you why. A wrong polynomial would be indistinguishable from a right one until someone checked it.

Geometric mode uses the finite geometric series formula from OpenStax College Algebra 2e, adjusted for a lower bound that need not be zero. That formula divides by 1 − r, so r = 1 is handled as its own case — with every term equal, the sum is just A multiplied by the number of terms. A ratio of exactly zero is refused, both because every term past the first would vanish and because 0⁰ at a lower bound of zero has no agreed value. Geometric sums are also checked for size before anything is computed: a ratio of 10 over a thousand terms produces a number with a thousand digits, and the page refuses up front instead of grinding.

One convention to note before reading any result: both bounds are inclusive. Summing from k = 0 to k = 10 adds eleven terms, not ten, and the number-of-terms output is shown beside the total so you can confirm the calculator is summing what you intended.

What is sum of series calculator?

Sigma notation is a compact way of writing a sum: the capital Greek sigma, an index variable with a starting value below it and an ending value above it, and a general term to the right that depends on the index. Σ from k = 1 to 10 of (3k + 2) means 'substitute k = 1, 2, 3, … 10 into 3k + 2 and add the results'. A series is what you get when you add the terms of a sequence, so every summation on this page is a series, and the number it produces is the series sum. Some series have closed forms — compact formulas that give the total without adding anything — and this calculator uses those exclusively. OpenStax Calculus Volume 1 §5.1 publishes the three power-sum formulas under the rule 'Sums and Powers of Integers', and OpenStax College Algebra 2e §9.4 gives the finite geometric series formula Sn = a₁(1 − rⁿ)/(1 − r) for r ≠ 1. Closed forms are what make summing ten million terms as fast as summing ten.

How to use this calculator.

  1. Choose the shape of your general term: linear (Ak + B), a power of k, or geometric (A × rᵏ).
  2. Fill in the coefficients that mode uses — the others are ignored, so leave whatever is in them.
  3. Set the lower and upper bounds of the index k. Both are inclusive.
  4. Read the sum, then check the sigma-notation line beneath it to confirm the calculator is summing the expression you meant.
  5. Use the first-term and last-term outputs as a quick sanity check on your coefficients before trusting the total.

The formula.

Σ (k = m → n) f(k) = F(n) − F(m − 1)

Every mode reduces to a closed form and a subtraction. Write F(N) for the total from index 1 up to N; then the total from m to n is F(n) − F(m − 1), because subtracting the head of the sum leaves exactly the piece you asked for. For power sums, F is one of the three polynomials OpenStax Calculus Volume 1 §5.1 publishes: N(N+1)/2 for k, N(N+1)(2N+1)/6 for k², and N²(N+1)²/4 for k³. Those polynomials evaluate to zero at N = 0 and at N = −1, which is exactly what an empty sum should give — and it is why a lower bound of 0 needs no special handling here. For a linear general term Ak + B, the sum splits into A times the sum of the indices plus B added once per term: A·(F₁(n) − F₁(m−1)) + B·(n − m + 1). For a geometric general term A·rᵏ, factoring rᵐ out of the front turns the sum into a standard finite geometric series, giving A·rᵐ·(r^(n−m+1) − 1)/(r − 1), which reduces to the familiar formula in OpenStax College Algebra 2e §9.4 when m = 0. That expression divides by r − 1, so r = 1 is computed separately as A multiplied by the number of terms rather than being allowed to become 0/0. All arithmetic runs at full decimal precision and is rounded once, at the end, to 10 decimal places — nothing is rounded at an intermediate step. Geometric sums get one extra safeguard: the size of the result is predicted in base-10 logarithms before any power is computed, so a request like 10ᵏ summed to k = 1000 is refused immediately rather than building a thousand-digit number and stalling the page.

A worked example.

Example

Evaluate Σ from k = 1 to 10 of (3k + 2). The calculator splits it into two pieces: three times the sum of the indices, plus 2 added once for each of the ten terms. The sum of the indices from 1 to 10 is 10 × 11 ⁄ 2 = 55, so the total is 3 × 55 + 2 × 10 = 165 + 20, and the sum output reads 185. You can check that by hand: the terms are 5, 8, 11, 14, 17, 20, 23, 26, 29 and 32, and pairing them inward from both ends gives five pairs each totalling 37, so 37 × 5 = 185. The number-of-terms output is 10, the first-term output is 3(1) + 2 = 5, the last-term output is 3(10) + 2 = 32, and the average-term output is 185 ⁄ 10 = 18.5 — which for a linear series is exactly the midpoint of the first and last terms, (5 + 32) ⁄ 2. The sigma-notation output writes the whole thing back to you as Σ from k = 1 to 10 of (3k + 2) = 185. Switch the mode to power with an exponent of 2 and the same bounds and you get 385, the sum of the first ten squares; raise the lower bound to 3 and it becomes 380, since the first two squares total 5.

upper Bound10
series Typelinear
coefficient B2
lower Bound1
coefficient A3
exponent2
ratio2

Frequently asked questions.

What is sigma notation?
A compact way of writing a sum. The capital sigma Σ carries a starting index below it and an ending index above it, with the general term written to its right. Σ from k = 1 to 10 of (3k + 2) instructs you to put k = 1, 2, 3 … 10 into 3k + 2 and add the ten results, which comes to 185. Both bounds are inclusive, which is why the sum from 0 to 10 contains eleven terms rather than ten.
How is this different from the arithmetic and geometric sequence calculators?
Those pages solve a progression for its nth term, its common difference or ratio, and its term count, and they report the sum of the first n terms as one output. This page does none of that solving — it evaluates a summation. Two things it can do that they cannot: start the index anywhere rather than at the first term, and sum powers such as k² and k³, which are neither arithmetic nor geometric terms. If you want the term formula, use those pages; if you want a total between two bounds, use this one.
What is the formula for the sum of squares?
Σ from i = 1 to n of i² = n(n+1)(2n+1)/6. For n = 10 that gives 10 × 11 × 21 ⁄ 6 = 385, which you can verify by adding 1 + 4 + 9 + 16 + 25 + 36 + 49 + 64 + 81 + 100. The companion formulas are n(n+1)/2 for the first powers and n²(n+1)²/4 for the cubes. All three are published in OpenStax Calculus Volume 1 §5.1 as the rule 'Sums and Powers of Integers'.
Why does the exponent stop at 3?
Because those are the three closed forms this page can cite. The sum of fourth powers exists but requires Faulhaber's formula and Bernoulli numbers, and writing a fourth polynomial from memory rather than from a source is exactly the kind of thing that produces a confidently wrong answer nobody notices. The page narrows its scope instead, and says so in the error message rather than silently doing something else.
How do I sum from a starting index other than 1?
Just set the lower bound. Internally the calculator computes the total from 1 up to your upper bound and subtracts the total from 1 up to one below your lower bound, which is why an arbitrary starting index costs nothing extra. A lower bound of 0 works too: the closed forms evaluate to zero one step before the start, which is precisely what an empty sum should be.
What happens when the geometric ratio is exactly 1?
The published formula a₁(1 − rⁿ)/(1 − r) divides by 1 − r, so r = 1 would be 0/0. With every term identical, the sum is simply the coefficient multiplied by the number of terms, and the calculator computes it that way rather than returning an error. A ratio of exactly 0 is refused instead, because every term past the first would vanish and 0⁰ at a lower bound of zero has no agreed value.
Can I sum 1 + 1/2 + 1/3 + … here?
No, and deliberately so. That sum is the harmonic number Hn, which has its own page because it behaves quite differently from the families here — it has no closed form at all, and it needs the Euler–Mascheroni constant to estimate. Adding a reciprocal mode to this page would have duplicated that one, so this page carries linear, power and geometric general terms only.

In this category

Embed

Quanta Pro

Paid features are coming later.

  • All 977 calculators remain free
  • No billing is enabled
Coming soon