Number Sequence Calculator
Advanced Tool for Arithmetic, Geometric, and Fibonacci Sequences
Quick Navigation
Arithmetic Sequence Calculator
Definition: aₙ = a₁ + f × (n-1)
Geometric Sequence Calculator
Definition: aₙ = a × rⁿ⁻¹
Fibonacci Sequence Calculator
Definition: a₀=0; a₁=1; aₙ = aₙ₋₁ + aₙ₋₂
What are Number Sequences?
A number sequence is an ordered list of numbers following a specific pattern or rule. Each number in the sequence is called a term. Sequences appear throughout mathematics, physics, finance, and nature. Understanding sequences helps solve problems involving patterns, predictions, and growth.
There are three main types: Arithmetic sequences have constant difference between consecutive terms. Geometric sequences have constant ratio between consecutive terms. Fibonacci sequences follow the pattern where each term is the sum of the previous two terms. Each type has unique properties and applications.
Sequences are fundamental to mathematics and science. They model population growth, investment returns, radioactive decay, architectural patterns, and countless natural phenomena. This calculator helps you find specific terms, calculate sums, and understand the mathematics behind these essential patterns.
Key Features & Capabilities
This comprehensive sequence calculator provides complete analysis for all three sequence types:
How to Use This Calculator
Step-by-Step Guide
- Choose Sequence Type: Select Arithmetic, Geometric, or Fibonacci based on your sequence type.
- Enter Initial Values: For arithmetic/geometric, enter first term and common difference/ratio. For Fibonacci, just enter the position.
- Specify Position: Enter which term (n) you want to find. For Fibonacci, this is the only input needed.
- Click Calculate: Press Calculate to compute the nth term and generate the sequence.
- Review Results: See the nth term value, complete sequence, and sum of all terms.
- Study Calculation: Understand step-by-step how the formula was applied.
- Analyze Statistics: View mean, range, and other sequence properties.
- Copy or Clear: Use Copy for results or Clear to calculate a new sequence.
Tips for Accurate Use
- Identify Pattern: Arithmetic has constant difference; geometric has constant ratio. Make sure you identify the correct type.
- Use Decimals: The calculator supports decimal values for all sequence types.
- Negative Values: Common difference/ratio can be negative for decreasing sequences.
- Large n Values: Geometric sequences grow very quickly; large n may produce very large numbers.
- Fibonacci Limit: Calculator supports up to position 100 for Fibonacci.
Complete Formulas Guide
Arithmetic Sequence
aₙ = a₁ + (n - 1) × dWhere:
aₙ = nth term
a₁ = first term
d = common difference
n = position
Example: First term = 2, difference = 5, find 20th term
a₂₀ = 2 + (20-1) × 5 = 2 + 95 = 97
Arithmetic Sum
S = n/2 × (a₁ + aₙ)or S = n/2 × (2a₁ + (n-1)d)Sum of all terms up to position n
Example above: S₂₀ = 20/2 × (2 + 97) = 10 × 99 = 990
Geometric Sequence
aₙ = a × r^(n-1)Where:
aₙ = nth term
a = first term
r = common ratio
n = position
Example: First term = 2, ratio = 5, find 12th term
a₁₂ = 2 × 5^(12-1) = 2 × 5^11 = 2 × 48,828,125 = 97,656,250
Geometric Sum
S = a × (1 - r^n) / (1 - r) (when r ≠ 1)Sum of all terms up to position n
For r > 1, terms grow exponentially
Note: When |r| < 1, sum approaches a/(1-r)
Fibonacci Sequence
F₀ = 0F₁ = 1Fₙ = Fₙ₋₁ + Fₙ₋₂ (for n ≥ 2)Each term is sum of previous two
Example: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89...
Sequence Types Explained
Arithmetic Sequences
Arithmetic sequences have constant difference between consecutive terms. Example: 2, 5, 8, 11, 14 (difference = 3). The difference can be positive (increasing), negative (decreasing), or zero (constant). They grow linearly—each step adds the same amount. Used in modeling uniform growth like simple interest.
Geometric Sequences
Geometric sequences have constant ratio between consecutive terms. Example: 2, 6, 18, 54, 162 (ratio = 3). The ratio determines growth rate. Ratios greater than 1 show exponential growth; between 0 and 1 show decay. Geometric sequences model phenomena like compound interest and radioactive decay.
Fibonacci Sequences
Fibonacci sequences where each term equals the sum of previous two: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89... Appears throughout nature (flower petals, spiral shells, tree branches). The ratio between consecutive terms approaches the golden ratio (≈1.618). Named after Leonardo Fibonacci who introduced it in 1202.
Applications
Arithmetic: Rent increases, age at each year, linear depreciation. Geometric: Compound interest, population growth, half-life decay. Fibonacci: Nature patterns, stock analysis, algorithm design, data compression.
Worked Examples
Example 1: Arithmetic Sequence
Problem: First term = 2, common difference = 5. Find 20th term and sum of first 20 terms.
Find 20th term: a₂₀ = 2 + (20-1) × 5 = 2 + 95 = 97
Sum of 20 terms: S₂₀ = 20/2 × (2 + 97) = 10 × 99 = 990
Sequence: 2, 7, 12, 17, 22, 27, 32, 37, 42, 47, 52, 57, 62, 67, 72, 77, 82, 87, 92, 97
Example 2: Geometric Sequence
Problem: First term = 2, common ratio = 3. Find 8th term.
a₈ = 2 × 3^(8-1) = 2 × 3^7 = 2 × 2,187 = 4,374
Sequence: 2, 6, 18, 54, 162, 486, 1,458, 4,374
Note: Grows rapidly compared to arithmetic
Example 3: Fibonacci Sequence
Problem: Find the 10th Fibonacci number.
F₀ = 0
F₁ = 1
F₂ = 0 + 1 = 1
F₃ = 1 + 1 = 2
F₄ = 1 + 2 = 3
F₅ = 2 + 3 = 5
F₆ = 3 + 5 = 8
F₇ = 5 + 8 = 13
F₈ = 8 + 13 = 21
F₉ = 13 + 21 = 34
F₁₀ = 21 + 34 = 55
Example 4: Arithmetic Sum Application
Problem: Your salary starts at $30,000 and increases $2,000 per year. Total earnings after 10 years?
Year 1: $30,000
Year 10: 30,000 + (10-1) × 2,000 = $48,000
Total earnings (arithmetic sum):
S = 10/2 × (30,000 + 48,000)
S = 5 × 78,000 = $390,000
Example 5: Geometric Growth Application
Problem: Investment doubles every year. Starting with $1,000, what's it worth after 10 years?
a₁ = $1,000 (initial investment)
r = 2 (doubles)
a₁₀ = 1,000 × 2^(10-1) = 1,000 × 512 = $512,000
Shows power of exponential growth
Frequently Asked Questions
Start Calculating Sequences
Whether you're studying mathematics, analyzing patterns, modeling growth, or exploring natural phenomena, this comprehensive number sequence calculator provides instant solutions with complete analysis. Fast, accurate, and completely free.