Sequences explained
A number sequence is an ordered list of numbers following a specific rule. This calculator finds two key results: the nth term (the value at any position) and the sum (the total of all terms up to position n). It works with three common sequence types.
The formula
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) (when r ≠ 1)
Fibonacci: nth term = sum of previous two terms | Sum = sum of all generated terms
Worked example
Scenario 1: Arithmetic sequence
You're saving money and deposit $50 in month 1, then $55 in month 2, $60 in month 3, and so on. What will you have deposited in month 12, and what's your total savings?
- First term (a) = 50
- Common difference (d) = 5
- Number of terms (n) = 12
12th term: 50 + (12 − 1) × 5 = 50 + 55 = $105
Sum: 12/2 × (2 × 50 + (12 − 1) × 5) = 6 × (100 + 55) = 6 × 155 = $930
So in month 12 you deposit $105, and your total savings across all 12 months is $930.
Scenario 2: Geometric sequence
A viral video gets 1,000 views on day 1. Each day it gets 1.5× the previous day's views. How many views on day 8, and how many total views across 8 days?
- First term (a) = 1,000
- Common ratio (r) = 1.5
- Number of terms (n) = 8
8th term: 1,000 × 1.5^(8−1) = 1,000 × 1.5^7 = 1,000 × 17.0859 = 17,085.9 views
Sum: 1,000 × (1 − 1.5^8) / (1 − 1.5) = 1,000 × (1 − 25.6289) / (−0.5) = 1,000 × (−24.6289) / (−0.5) = 49,257.8 total views
Scenario 3: Fibonacci sequence
You start a Fibonacci sequence with 1, 1. What are the first 10 terms, and their sum?
- First term = 1
- Second term = 1
- Number of terms = 10
The sequence unfolds as: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55
10th term: 55
Sum: 1 + 1 + 2 + 3 + 5 + 8 + 13 + 21 + 34 + 55 = 143
Common mistakes
Confusing position with value: The nth term is the position (like "month 5" or "day 10"), not the difference or ratio itself. Always use n to mean "which position?"
Forgetting the "minus 1" in formulas: Both arithmetic and geometric nth-term formulas use (n − 1), not n. This is because the first term is at position 1, not position 0.
Mixing up ratio and difference: Use a common difference for arithmetic (addition/subtraction) and a common ratio for geometric (multiplication/division). Entering 2 as a difference means +2 each step; entering 2 as a ratio means ×2 each step—very different results.
Assuming geometric sums work with r = 1: When the ratio equals 1, every term is identical, so the sum is simply a × n. The standard formula breaks down, so use this simpler version instead.