Sequences and Their Notations
Sequences are ordered lists of numbers that follow specific patterns. They show up throughout math as tools for modeling real-world scenarios, from population growth to loan payments. This topic covers how to generate and work with sequences using explicit formulas, recursive definitions, and factorial notation.
Generation of Explicit Sequence Terms
An explicit formula gives you a direct way to calculate any term in a sequence without knowing the terms before it. You write it as , where is the term's position number.
For example, the sequence 2, 5, 8, 11, ... has the explicit formula . To find any term, just plug in the position number for :
- 1st term:
- 10th term:
- 100th term:
That's the power of explicit formulas: you can jump straight to the 100th term without calculating the first 99.
Two Common Types
Arithmetic sequences have a constant difference between consecutive terms. Their explicit formula is:
where is the first term and is the common difference. In the sequence 2, 5, 8, 11, ..., the common difference is 3 because each term is 3 more than the previous one.
Geometric sequences have a constant ratio between consecutive terms. Their explicit formula is:
where is the first term and is the common ratio. In the sequence 2, 6, 18, 54, ..., the common ratio is 3 because each term is 3 times the previous one.
A quick way to tell them apart: if you're adding the same number each time, it's arithmetic. If you're multiplying by the same number each time, it's geometric.
Construction of Recursive Sequence Terms
A recursive formula defines each term using one or more previous terms. Unlike explicit formulas, you can't jump directly to a term; you have to build up to it step by step.
Every recursive formula needs two things:
- Initial condition(s): the starting term(s) that anchor the sequence
- Recursion rule: the formula that relates each new term to previous terms
Without initial conditions, the sequence is undefined because there's nothing to start from.

Example: The Fibonacci Sequence
The Fibonacci sequence (0, 1, 1, 2, 3, 5, 8, ...) is defined recursively:
- Initial conditions: ,
- Recursion rule: for
To find the 6th term, you calculate each term in order:
Notice that you need every prior term to get to the one you want. This is the main tradeoff: recursive formulas are often easier to write, but harder to compute for large .
Arithmetic and geometric sequences can also be written recursively:
- Arithmetic: , with given
- Geometric: , with given
Application of Factorial Notation
Factorial notation (written with !) means you multiply a positive integer by every positive integer below it:
A few more examples to build intuition:
By definition, . This might seem odd, but it keeps formulas in combinatorics and probability consistent.
Why Factorials Matter
The number of ways to arrange distinct objects in order (called permutations) is . For instance, 3 books can be arranged on a shelf in different orders.

Simplifying Factorial Expressions
You'll often need to simplify fractions involving factorials. The key trick is to expand and cancel:
For example:
The binomial coefficient combines factorials in a specific way:
This counts the number of ways to choose objects from a set of objects when order doesn't matter. For example, choosing 2 people from a group of 5: .
Sequences Involving Factorials
Factorials can appear in sequence formulas. The simplest example is the sequence of factorials itself:
These values grow extremely fast, which is why factorial-based sequences come up in probability and counting problems.
Behavior of Sequences and Series
Once you can generate terms of a sequence, the next question is: what happens as the sequence goes on?
Convergence means the terms of a sequence approach a specific value (called the limit) as gets larger and larger. For example, the sequence produces 1, 0.5, 0.333..., 0.25, ... and converges to 0.
Divergence means the terms don't settle toward any single value. The sequence produces 2, 4, 6, 8, ... and diverges because the terms keep growing without bound.
A series is what you get when you add up the terms of a sequence. Series are often written in summation notation (using the symbol), which compactly expresses the sum. For example:
The distinction matters: a sequence is a list of numbers, while a series is the sum of those numbers.