Advertisement

Number Sequences: Guide

Identifying patterns in numerical sequences including arithmetic, geometric, and complex patterns

Learn

Basic Sequences

Arithmetic and geometric patterns with constant operations

  1. Arithmetic Sequence
  2. Geometric Sequence

Recursive Patterns

Patterns where terms depend on previous terms

  1. Fibonacci-Type Sequence

Problem-Solving Methods

Techniques for identifying sequence patterns

  1. Difference Method

Advanced Patterns

Complex patterns involving multiple rules

  1. Second Differences
  2. Interleaved Sequences
  3. Compound Rules
  4. Cube Numbers
  5. Digit Sum
  6. Factorial Sequence
  7. Look-and-Say Sequence
  8. Modular Pattern
  9. Prime Numbers
  10. Square Numbers
  11. Triangular Numbers

Learn 1

Arithmetic Sequence

A sequence where each term differs from the previous by a constant amount (common difference).

An arithmetic sequence (also called arithmetic progression) is a sequence of numbers where the difference between consecutive terms is constant. This constant is called the 'common difference'. Arithmetic sequences are among the most fundamental patterns in mathematics and appear frequently in real-world situations like counting, scheduling, and linear growth.

aₙ = a₁ + (n-1)d, where d is the common difference

  • 2, 5, 8, 11, 14... (common difference = +3)
  • 20, 17, 14, 11, 8... (common difference = -3)
  • 1, 1, 1, 1, 1... (common difference = 0)

How to recognize it

  • Calculate the difference between consecutive terms
  • If all differences are the same, it's arithmetic
  • The pattern is 'add (or subtract) the same number each time'

Common mistakes

  • Confusing with geometric sequences (multiply vs add)
  • Miscounting when the common difference is negative
  • Forgetting that constant sequences (d=0) are also arithmetic

Step-by-step walkthrough

Find the next term: 2, 5, 8, 11, ?

  1. Calculate differences: 5-2=3, 8-5=3, 11-8=3
  2. All differences are the same: common difference = 3
  3. This is arithmetic. Add 3 to the last term
  4. The next term is 14

Answer: 14

Learn 2

Geometric Sequence

A sequence where each term is found by multiplying the previous term by a constant (common ratio).

A geometric sequence (also called geometric progression) is a sequence where each term is obtained by multiplying the previous term by a fixed number called the 'common ratio'. Geometric sequences model exponential growth and decay, compound interest, population growth, and many natural phenomena.

aₙ = a₁ × rⁿ⁻¹, where r is the common ratio

  • 2, 6, 18, 54, 162... (common ratio = ×3)
  • 1000, 500, 250, 125... (common ratio = ×0.5 or ÷2)
  • 1, -2, 4, -8, 16... (common ratio = ×(-2))

How to recognize it

  • Divide each term by the previous term
  • If all ratios are the same, it's geometric
  • The pattern is 'multiply by the same number each time'

Common mistakes

  • Confusing with arithmetic sequences (add vs multiply)
  • Forgetting that division is multiplication by a fraction
  • Missing negative ratios that cause alternating signs

Step-by-step walkthrough

Find the next term: 2, 6, 18, 54, ?

  1. Calculate ratios: 6÷2=3, 18÷6=3, 54÷18=3
  2. All ratios are the same: common ratio = 3
  3. This is geometric. Multiply the last term by 3
  4. The next term is 162

Answer: 162

Learn 3

Fibonacci-Type Sequence

A sequence where each term is the sum of the two preceding terms.

A Fibonacci-type sequence (also called a recursive additive sequence) is one where each term equals the sum of the two terms before it. The classic Fibonacci sequence starts with 0 and 1, but any two starting numbers create a valid Fibonacci-type sequence. These patterns appear in nature (flower petals, pinecones, shells) and have fascinating mathematical properties.

aₙ = aₙ₋₁ + aₙ₋₂

  • 1, 1, 2, 3, 5, 8, 13, 21... (classic Fibonacci)
  • 2, 5, 7, 12, 19, 31... (starts with 2 and 5)
  • 1, 3, 4, 7, 11, 18... (Lucas numbers)

How to recognize it

  • Check if each term equals the sum of the two before it
  • Look for accelerating growth that's not purely multiplicative
  • The differences between terms will themselves form a pattern

Common mistakes

  • Only expecting the classic 1, 1, 2, 3, 5... pattern
  • Confusing with simple addition sequences
  • Not checking multiple pairs of consecutive sums

Step-by-step walkthrough

Find the next term: 1, 1, 2, 3, 5, 8, ?

  1. Check if each term = sum of previous two: 1+1=2 ✓
  2. Continue checking: 1+2=3 ✓, 2+3=5 ✓, 3+5=8 ✓
  3. This is Fibonacci-type. Add the last two terms
  4. The next term is 13

Answer: 13

Learn 4

Difference Method

A systematic technique for identifying sequence patterns by calculating differences between consecutive terms.

The difference method is a fundamental problem-solving technique for number sequences. By calculating the differences between consecutive terms, you can often reveal the underlying pattern. If the first differences are constant, it's arithmetic. If the first differences vary but the second differences are constant, it's quadratic. This method systematically uncovers hidden structure in sequences.

First differences: dₙ = aₙ₊₁ - aₙ

  • Sequence: 2, 5, 8, 11 → Differences: 3, 3, 3 (constant = arithmetic)
  • Sequence: 1, 4, 9, 16 → Differences: 3, 5, 7 → Second differences: 2, 2 (quadratic)
  • Sequence: 2, 6, 18, 54 → Differences: 4, 12, 36 (not constant, try ratios instead)

How to recognize it

  • Write out the differences between consecutive terms
  • If differences are constant, you found the pattern
  • If not constant, calculate differences of differences (second differences)
  • Continue until you find a constant level

Common mistakes

  • Stopping too early - sometimes you need second or third differences
  • Using differences on geometric sequences (use ratios instead)
  • Arithmetic errors in subtraction

Step-by-step walkthrough

Find the pattern in: 1, 4, 9, 16, 25

  1. Calculate first differences: 4-1=3, 9-4=5, 16-9=7, 25-16=9
  2. First differences not constant. Calculate second differences
  3. Second differences are constant (2) - quadratic pattern
  4. These are perfect squares: 1², 2², 3², 4², 5²

Answer: Perfect squares (n²)

Learn 5

Second Differences

A pattern where the differences between consecutive terms form their own arithmetic sequence.

Second differences occur when the first differences between terms aren't constant, but the differences of those differences (second differences) are constant. This indicates a quadratic relationship. Sequences with constant second differences include square numbers, triangular numbers, and other polynomial sequences of degree 2.

If second differences are constant = c, then aₙ = An² + Bn + C

  • 1, 4, 9, 16, 25... (squares) → 1st diff: 3, 5, 7, 9 → 2nd diff: 2, 2, 2
  • 1, 3, 6, 10, 15... (triangular) → 1st diff: 2, 3, 4, 5 → 2nd diff: 1, 1, 1
  • 2, 6, 12, 20, 30... → 1st diff: 4, 6, 8, 10 → 2nd diff: 2, 2, 2

How to recognize it

  • Calculate first differences between consecutive terms
  • If first differences aren't constant, calculate second differences
  • Constant second differences indicate a quadratic pattern
  • The sequence grows faster than arithmetic but slower than geometric

Common mistakes

  • Stopping at first differences when they're not constant
  • Confusing with geometric sequences (check ratios vs differences)
  • Forgetting to continue to third differences for cubic sequences

Step-by-step walkthrough

Find the next term: 1, 3, 6, 10, 15, ?

  1. Calculate first differences: 3-1=2, 6-3=3, 10-6=4, 15-10=5
  2. First differences increase by 1 each time
  3. Second differences: 3-2=1, 4-3=1, 5-4=1
  4. Next 1st diff = 6, so next term = 15 + 6 = 21

Answer: 21

Learn 6

Interleaved Sequences

Two or more independent sequences alternating within a single series.

Interleaved sequences contain two (or more) separate patterns woven together in alternating positions. The odd positions follow one rule while the even positions follow another. This creates sequences that appear complex but become simple when you separate them into their component parts.

Odd positions: a₁, a₃, a₅... follow Rule A; Even positions: a₂, a₄, a₆... follow Rule B

  • 1, 10, 2, 20, 3, 30... → Odds: 1, 2, 3 (+1); Evens: 10, 20, 30 (+10)
  • 2, 3, 4, 6, 8, 9... → Odds: 2, 4, 8 (×2); Evens: 3, 6, 9 (+3)
  • 1, 5, 1, 10, 1, 15... → Odds: 1, 1, 1 (constant); Evens: 5, 10, 15 (+5)

How to recognize it

  • Separate odd-positioned and even-positioned terms
  • Check if each subset follows its own pattern
  • Look for terms that seem 'out of place' with neighbors
  • Often signaled by alternating magnitudes or signs

Common mistakes

  • Trying to find a single rule for the entire sequence
  • Not considering position-based separation
  • Confusing with sequences that have alternating signs

Learn 7

Compound Rules

Sequences that combine multiple operations (like add then multiply) to generate each term.

Compound rule sequences apply more than one operation to get from one term to the next. Common combinations include 'multiply then add', 'add then multiply', or alternating between different operations. These sequences require recognizing that a single operation won't explain the pattern.

aₙ₊₁ = f(g(aₙ)), where f and g are different operations

  • 2, 5, 11, 23, 47... (×2 then +1 each step)
  • 1, 3, 7, 15, 31... (×2 then +1, or 2ⁿ - 1)
  • 3, 7, 15, 31... (×2 + 1 each step)

How to recognize it

  • Simple differences or ratios don't reveal a constant
  • Try combinations: (term × k) + c or (term + c) × k
  • Look for patterns like 'double and add one'
  • The relationship between terms may need two operations

Common mistakes

  • Assuming only one operation is involved
  • Not trying different operation orders
  • Missing that some compound rules simplify to formulas (like 2ⁿ - 1)

Step-by-step walkthrough

Find the next term: 2, 5, 11, 23, 47, ?

  1. Test differences: 3, 6, 12, 24 - not constant, but doubling!
  2. Test the rule: ×2 then +1 on each term
  3. Continue: 5×2+1=11 ✓, 11×2+1=23 ✓, 23×2+1=47 ✓
  4. Apply rule: 47×2+1 = 95

Answer: 95

Learn 8

Cube Numbers

Numbers of the form n³, produced by multiplying an integer by itself three times.

A cubic number (or perfect cube) has the form C_n = n³ where n is a non-negative integer. The sequence begins 0, 1, 8, 27, 64, 125, 216, 343, 512, 729, 1000. Cubes grow much faster than squares: the ratio between consecutive terms approaches 1 only slowly, so cube sequences stretch out quickly. The third differences of a cube sequence are constant (equal to 6).

C_n = n³

  • 1, 8, 27, 64, 125 → next is 216 (6³)
  • 0, 1, 8, 27, 64 → next is 125 (5³)
  • 8, 27, 64, 125, 216 → ratios 3.375, 2.37, 1.95, 1.73 show rapid growth

How to recognize it

  • Check if each term is a perfect cube of an integer (1, 8, 27, 64, 125, 216, ...)
  • Take differences three times; if the third differences are constant at 6, you have cubes
  • Cubes grow much faster than squares — if values explode quickly, suspect n³

Common mistakes

  • Confusing cubes with squares when the first term is 1 (both sequences start with 1)
  • Mistaking 2n³ or n³ + 1 for a pure cube sequence
  • Assuming a geometric sequence when the growth is actually polynomial

Learn 9

Digit Sum

The sum of the base-10 digits of an integer, used to generate or recognize sequences.

The digit sum s(n) adds up the base-10 digits of n. For example, s(1729) = 1 + 7 + 2 + 9 = 19. Digit-sum patterns commonly appear in two ways: (a) sequences where each term is the digit sum of the previous term, and (b) sequences whose nth term relates to s(n) somehow. The digit sum is invariant under permutation of digits and under multiples of 9 (a number is divisible by 9 iff its digit sum is).

s(n) = sum of base-10 digits of n

  • 1729 → 1+7+2+9 = 19
  • s(1) = 1, s(10) = 1, s(100) = 1 (all 1s)
  • 144 → 1+4+4 = 9 (divisible by 9 ↔ digit sum divisible by 9)

How to recognize it

  • Suspect digit-sum rules when a sequence resets or loops between small values (1–9)
  • Check divisibility by 3 or 9 via the digit sum
  • If consecutive terms relate via summed digits, iterate the rule to confirm

Common mistakes

  • Treating digit sum as digit product (9 → 9 but 19 → 9, not 10)
  • Applying digit sum in a non-decimal base without adjusting
  • Forgetting that multi-digit input numbers can be reduced repeatedly to a single digit (digital root)

Learn 10

Factorial Sequence

Values of n! = n × (n−1) × ... × 2 × 1 that grow extremely quickly.

The factorial of a non-negative integer n is n! = n × (n−1) × (n−2) × ... × 2 × 1, with the convention 0! = 1. The sequence begins 1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880. Each term is obtained by multiplying the previous term by the next integer, so the ratio a_{n+1}/a_n increases without bound. Factorials grow faster than any polynomial or geometric sequence.

n! = n × (n−1) × ... × 2 × 1, with 0! = 1; a_{n+1} = (n+1) × a_n

  • 1, 2, 6, 24, 120 → next is 720 (multiply by 6)
  • 6, 24, 120, 720 → next is 5040 (multiply by 7)
  • 24, 120, 720, 5040, 40320 → ratios 5, 6, 7, 8 (successive integers)

How to recognize it

  • Check the ratio between consecutive terms: if it increases by 1 each step, it is a factorial
  • Factorials match 1, 2, 6, 24, 120, 720, 5040 — memorize the first seven
  • Growth is faster than any geometric sequence — faster than doubling, tripling, etc.

Common mistakes

  • Confusing with geometric sequences (constant ratio) when early ratios look similar
  • Forgetting 0! = 1 (by convention, not by formula)
  • Multiplying by n instead of (n+1) at the next step

Learn 11

Look-and-Say Sequence

Each term describes the previous term by counting runs of identical digits.

Starting from a single digit, each term is obtained by reading the previous term aloud and counting consecutive identical digits. Starting from 1: one 1 → 11; two 1s → 21; one 2, one 1 → 1211; one 1, one 2, two 1s → 111221; and so on. The sequence is 1, 11, 21, 1211, 111221, 312211, 13112221, 1113213211. Conway showed that the length of terms grows by a fixed factor (Conway's constant ≈ 1.303577).

a_{n+1} = "read" a_n as runs of identical digits

  • 1 → 11 (one 1)
  • 11 → 21 (two 1s)
  • 21 → 1211 (one 2, one 1)
  • 1211 → 111221 (one 1, one 2, two 1s)

How to recognize it

  • The only digits that appear are 1, 2, and 3 (proven by Conway)
  • Each term reads as a description of the previous term
  • Term lengths grow but not by a simple integer ratio

Common mistakes

  • Reading digits individually without grouping identical runs
  • Starting from 2 or 3 — the classic sequence starts from 1
  • Swapping the order of (count, digit) pairs

Learn 12

Modular Pattern

Sequences where terms repeat cyclically according to arithmetic modulo a fixed number.

Modular arithmetic partitions the integers into residue classes modulo n: a ≡ b (mod n) means that n divides (a − b). A modular pattern is a sequence whose values cycle through a fixed set of residues as the index advances — for example, the units digit of n² cycles 0, 1, 4, 9, 6, 5, 6, 9, 4, 1, 0, ... with period 10. Cyclic repetition of any period is the tell-tale sign that the rule is modular.

a_n = f(n) mod m, with a_n eventually periodic with period dividing m

  • n mod 3: 0, 1, 2, 0, 1, 2, 0, 1, 2, ...
  • units digit of 2^n: 2, 4, 8, 6, 2, 4, 8, 6, ... (period 4)
  • days of the week: cycle of length 7

How to recognize it

  • Values repeat with a fixed period
  • All values lie in a small finite set (0 to m−1 for some m)
  • The rule involves remainders, cycles, or clock-style wrap-around

Common mistakes

  • Confusing period length with modulus (they can differ)
  • Assuming the cycle starts at index 0 when there is a transient prefix
  • Using m = 0 or a negative modulus (both undefined here)

Learn 13

Prime Numbers

Positive integers greater than 1 that have no divisors other than 1 and themselves.

A prime number is a positive integer p > 1 whose only positive divisors are 1 and p itself. The sequence of primes begins 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47. Note that 2 is the only even prime; every other prime is odd. Primes are not generated by a simple closed-form formula — you must check divisibility (or consult a known list) to determine the next term.

p ∈ ℕ, p > 1, divisors(p) = {1, p}

  • 2, 3, 5, 7, 11 → next is 13 (skipping 12 = 2 · 6)
  • 11, 13, 17, 19, 23 → next is 29 (skipping 24, 25, 26, 27, 28)
  • 5, 7, 11, 13, 17 → gaps of 2, 4, 2, 4 (prime gaps)

How to recognize it

  • Memorize the first primes up to 100 (only 25 of them)
  • A number n > 1 is prime if no integer from 2 to √n divides it
  • All primes except 2 and 3 have the form 6k ± 1 (but not every 6k ± 1 is prime)

Common mistakes

  • Thinking 1 is prime — it is not; primes must be > 1
  • Thinking 9, 15, 21, 25, 27, 33, 35 are prime (all composite)
  • Assuming all odd numbers are prime (9 = 3 × 3 is the first counterexample)

Learn 14

Square Numbers

Numbers of the form n², produced by multiplying an integer by itself.

A square number (or perfect square) has the form S_n = n² where n is a non-negative integer. The sequence begins 0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100. Consecutive square numbers differ by consecutive odd numbers: (n+1)² − n² = 2n + 1. This gives a simple way to recognize the pattern: if the differences between terms form the sequence 3, 5, 7, 9, ..., you are looking at squares.

S_n = n²; S_{n+1} − S_n = 2n + 1

  • 1, 4, 9, 16, 25 → next is 36 (6²)
  • 0, 1, 4, 9, 16 → next is 25 (5²)
  • 4, 9, 16, 25, 36 → differences 5, 7, 9, 11 show odd-number gaps

How to recognize it

  • Check whether each term is a perfect square of an integer
  • Compute first differences; if they form 3, 5, 7, 9, ... you have squares
  • Second differences are constant at 2

Common mistakes

  • Confusing n² with 2n (doubling rather than squaring)
  • Forgetting that 0 and 1 are also valid square numbers
  • Mistaking squares for cubes when small values overlap (e.g. 1, 8 both appear)

Learn 15

Triangular Numbers

Sums 1 + 2 + 3 + ... + n that count objects arranged in a triangle.

The nth triangular number is T_n = n(n+1)/2, the sum of the first n positive integers. The sequence begins 1, 3, 6, 10, 15, 21, 28, 36, 45, 55, 66. Each term adds the next integer to the previous term, so first differences grow as 2, 3, 4, 5, ... and second differences are constant at 1. Triangular numbers show up when counting handshakes, grid diagonals, and round-robin pairings.

T_n = n(n+1)/2

  • 1, 3, 6, 10, 15 → next is 21 (6 + 15)
  • 3, 6, 10, 15, 21 → next is 28 (add 7)
  • 6, 10, 15, 21, 28 → differences 4, 5, 6, 7 (consecutive integers)

How to recognize it

  • Compute first differences; if they form 2, 3, 4, 5, 6, ... you have triangular numbers
  • Second differences are constant at 1
  • Check if each term matches n(n+1)/2 for some integer n

Common mistakes

  • Confusing with square numbers (which have first differences 3, 5, 7, 9, ...)
  • Forgetting the division by 2 and writing n(n+1) instead of n(n+1)/2
  • Missing the off-by-one: T_1 = 1, not 0

Worked examples

The worked examples below preserve the original practice set at every difficulty. Open an example to compare the prompt, answer choices, correct answer, and explanation.

Explanation

Advertisement