Series Sum Calculator – Calculate Arithmetic and Geometric Series

Computes the sum of six types of mathematical series: arithmetic, geometric, natural numbers (1+2+…+n), perfect squares, perfect cubes, and custom user-entered values. Each mode displays its closed-form formula and a preview of the first few terms, making it educational as well as practical for quick summation tasks.

Common Use Cases

  • Sum an arithmetic sequence for a homework problem
  • Find the total value of a geometric savings plan
  • Verify the formula for sum of squares: n(n+1)(2n+1)/6
  • Quickly add up a custom list of numbers

Series Types & Formulas

TypeFormulaParameters
ArithmeticSₙ = n/2 × (2a + (n−1)d)First term a, common difference d, n terms
GeometricSₙ = a × (1 − rⁿ) / (1 − r)First term a, common ratio r, n terms
1+2+…+nSₙ = n(n+1) / 2Enter n only
1²+2²+…+n²Sₙ = n(n+1)(2n+1) / 6Enter n only
1³+2³+…+n³Sₙ = [n(n+1)/2]²Enter n only
CustomS = Σ all entered valuesEnter numbers separated by commas or spaces

How to Use

  1. Select a series type from the chip buttons.
  2. The relevant formula is displayed in the formula box below the chips.
  3. Enter the required parameters for the chosen type.
  4. Click Calculate Sum — the result appears with a preview of the first few terms.

Tips & Notes

Note: For Geometric series, ratio r = 1 uses the simplified formula S = a × n.

Note: The Custom mode accepts any mix of integers and decimals — useful for ad-hoc totals.

Note: Term preview shows the first 8 values; if there are more, the pill shows how many are hidden.