Math Tools
Number Sequence Calculator
Calculate the nth term, sum, and first terms of arithmetic, geometric, or Fibonacci sequences.
nth Term
29
Math Tools
Calculate the nth term, sum, and first terms of arithmetic, geometric, or Fibonacci sequences.
nth Term
29
A sequence is an ordered list of numbers following a specific pattern. Arithmetic sequences have a constant difference between consecutive terms (e.g., 2, 5, 8, 11, ...). Geometric sequences have a constant ratio (e.g., 3, 6, 12, 24, ...). Fibonacci sequences begin 0, 1 and each next term is the sum of the previous two (e.g., 0, 1, 1, 2, 3, 5, 8, ...).
For arithmetic sequences: provide the first term (a) and common difference (d). The nth term is a + (n−1)d; the sum of the first n terms is n/2 × (2a + (n−1)d). For geometric sequences: provide the first term (a) and common ratio (r). The nth term is a × r^(n−1); the sum is a × (1 − r^n) / (1 − r). For Fibonacci: provide only n, and the calculator generates the first n Fibonacci numbers.
Arithmetic: nth term = a + (n−1)d; Sum = n/2(2a + (n−1)d). Geometric: nth term = a × r^(n−1); Sum = a(1 − r^n) / (1 − r). Fibonacci: F(n) = F(n−1) + F(n−2).Arithmetic uses a starting value (a) and a constant difference (d) to jump by fixed steps. Geometric uses a starting value and multiplies by a constant ratio (r) each step. Fibonacci starts with 0 and 1, and every next term is the sum of the two previous ones.
| Input | Result | Notes |
|---|---|---|
| Arithmetic: a=2, d=3, n=10 | nth term = 29, Sum = 155 | Sequence: 2, 5, 8, 11, 14, 17, 20, 23, 26, 29. Sum of all 10 terms: 155. |
| Geometric: a=3, r=2, n=6 | nth term = 96, Sum = 189 | Sequence: 3, 6, 12, 24, 48, 96. Sum: 3(1−2^6)/(1−2) = 189. |
| Fibonacci: n=10 | nth term = 34, Sum = 88 | First 10 Fibonacci numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34. Sum: 88. |
Arithmetic sequences add the same number each time (common difference d). Geometric sequences multiply by the same number each time (common ratio r). For example, 2, 4, 6, 8, ... is arithmetic (add 2 each time); 2, 4, 8, 16, ... is geometric (multiply by 2 each time).
Yes. Arithmetic sequences can have a negative difference (decreasing sequence). Geometric sequences can have a negative ratio (signs alternate). Fibonacci only produces non-negative integers by definition, but you can explore variations.
Fractions work fine. For example, a ratio of 0.5 means each term is half the previous one. A ratio of 1/3 produces a rapidly decreasing sequence. Use decimals (0.5, 0.333) in the input.
You can specify any position n. The calculator shows the nth term and the sum. It displays the first ten terms for reference; the actual sequence can extend much further.
If the ratio is greater than 1, the terms grow exponentially. The sum of a geometric sequence grows very quickly. If the ratio is between 0 and 1, the sum converges to a finite value.
As n increases, the ratio of consecutive Fibonacci numbers (F(n+1) / F(n)) approaches the golden ratio, approximately 1.618. This ratio appears in art, architecture, and nature.