COLLEGE ALGEBRA • SEQUENCES, SERIES & FINANCIAL MATH

Arithmetic Sequences: Explicit and Recursive Forms

Two complementary formulas for characterizing sequences with a constant difference between consecutive terms.

Historical Context & Motivation

The study of sequences with a constant difference between successive terms is among the oldest mathematical pursuits, predating even the formal notion of algebra. Ancient civilizations recognized that many natural and economic phenomena—the accumulation of resources over equal time intervals, the spacing of architectural elements, the counting of days—exhibit a strikingly regular additive pattern. The concept we now call an arithmetic sequence (sometimes called an arithmetic progression) emerged from these practical observations and eventually became a cornerstone of discrete mathematics, combinatorics, and modern financial modeling.

c. 1850 BCE
Egyptian & Babylonian Tablets
The Rhind Mathematical Papyrus and Babylonian clay tablets contain problems that distribute goods in arithmetic progression, demonstrating practical mastery of constant-difference sequences long before any formal algebraic notation existed.
c. 300 BCE
Euclid's Elements
Euclid formalized properties of proportional and additive sequences in Books VII–IX of the Elements, establishing deductive proofs for summation patterns and laying the groundwork for number theory.
c. 1780s
Gauss's Summation Insight
The young Carl Friedrich Gauss reportedly summed the integers 1 through 100 by pairing terms from opposite ends of the sequence—a strategy that yields the closed-form summation formula for arithmetic series still taught today.
1800s–1900s
Recursive Definitions in Analysis
With the formalization of mathematical analysis, recursive (inductive) definitions gained rigor through the work of Dedekind, Peano, and others, providing an axiomatic foundation for sequences defined by recurrence relations.
Modern Era
Applications in Finance & CS
Arithmetic sequences now underpin straight-line depreciation schedules, fixed-payment amortization adjustments, algorithmic loop counters, and signal processing, illustrating their enduring relevance across disciplines.

A central question runs through this history: given a sequence whose terms grow (or shrink) by a fixed amount, how can we express any term without listing every predecessor, and conversely, how can we describe the rule that builds each term from the one before it? These two perspectives—explicit (closed-form) and recursive—are the focus of this lesson.

Core Principles & Definitions

Before diving into formulas, it is essential to establish the language and structural properties that define arithmetic sequences and distinguish them from other families of sequences. The ideas below form the conceptual scaffolding upon which both the explicit and recursive representations rest.

1

Sequence as a Function

A sequence is a function whose domain is a subset of the integers (typically ℕ or ℤ⁺). Notationally, we write aₙ to denote the image of the integer n under this function, reinforcing the idea that each index maps to exactly one term.
2

Common Difference d

An arithmetic sequence is defined by the property that the difference between any two consecutive terms is constant: aₙ₊₁ − aₙ = d for every valid n. The value d may be positive, negative, or zero.
3

Explicit (Closed-Form) Rule

The explicit formula expresses the nth term directly as a function of n and the initial term a₁: aₙ = a₁ + (n − 1)d. This allows random access to any term without computing its predecessors.
4

Recursive Rule

The recursive definition specifies a starting value (a₁ = c) and a recurrence relation (aₙ = aₙ₋₁ + d for n ≥ 2). It mirrors the process of generating a sequence term by term.
5

Equivalence of Forms

The explicit and recursive forms are logically equivalent—each can be derived from the other. The explicit form is a 'solved' version of the recursive relation, obtained by unrolling the recurrence.
KEY TAKEAWAY
Think of an arithmetic sequence like a staircase with perfectly uniform steps. The recursive form tells you how to climb from one step to the next (add one riser of height d), while the explicit form tells you the total height of the nth step from the ground floor without climbing at all. Both describe the same staircase; they simply answer different questions—'What comes next?' versus 'What is the value at position n?'

Visual Explanation

Arithmetic sequences have a distinctive visual signature: when plotted on a coordinate plane with the index n on the horizontal axis and the term value aₙ on the vertical axis, the points lie exactly on a straight line. This collinearity is a direct consequence of the constant common difference d, which plays the role of the slope. The following diagram illustrates this relationship for the sequence aₙ = 3 + (n − 1) × 4, i.e., 3, 7, 11, 15, 19, …

Each cyan dot represents a term of the arithmetic sequence. The pink dashed segments between consecutive points show the constant common difference d = 4. The violet dashed line confirms that all points are collinear—the hallmark of an arithmetic sequence when graphed against its index.

The linearity visible in the diagram is no coincidence. The explicit formula aₙ = a₁ + (n − 1)d can be rewritten as aₙ = dn + (a₁ − d), which has the form y = mx + b—a linear function in n. Thus the common difference d is precisely the slope of the line, and the y-intercept is a₁ − d. This connection between arithmetic sequences and linear functions is one of the most powerful conceptual bridges in College Algebra: every arithmetic sequence defines a linear function restricted to integer inputs, and conversely, sampling any linear function at the positive integers produces an arithmetic sequence.

Mathematical Framework

We now formalize the two representations of an arithmetic sequence. Both encode the same information—a starting value and a constant step size—but they serve different computational purposes. The explicit form is ideal for direct evaluation, while the recursive form mirrors iterative processes and is foundational for mathematical induction.

RECURSIVE DEFINITION
a₁ = c, aₙ = aₙ₋₁ + d for n ≥ 2
Here c is the initial term (the base case) and d is the common difference. This pair of statements constitutes a first-order linear recurrence relation with constant coefficients. Every term is defined solely in terms of its immediate predecessor.
EXPLICIT (CLOSED-FORM) FORMULA
aₙ = a₁ + (n − 1) × d
The variable n denotes the term index (n ∈ ℤ⁺), a₁ is the first term, and d is the common difference. The factor (n − 1) counts the number of steps taken from the first term to the nth term.

Derivation: From Recursive to Explicit

The explicit formula can be derived by telescoping the recursive definition. Begin with the recurrence aₙ = aₙ₋₁ + d and expand backward: aₙ = aₙ₋₁ + d = (aₙ₋₂ + d) + d = aₙ₋₂ + 2d. Continuing this process, aₙ = aₙ₋₂ + 2d = aₙ₋₃ + 3d = ⋯ = a₁ + (n − 1)d. Each backward step adds one more copy of d, and there are exactly n − 1 such steps from index 1 to index n. This telescoping argument serves as an informal proof; a rigorous verification can be obtained via mathematical induction on n.

ALTERNATE EXPLICIT FORM (LINEAR FUNCTION)
aₙ = d × n + (a₁ − d)
Distributing the product in the standard explicit formula yields this slope-intercept form, where the slope is d and the 'y-intercept' (the value at n = 0, if the domain were extended) is a₁ − d = a₀. This form makes the connection to the linear function y = mx + b explicit.
COMMON DIFFERENCE FROM ANY TWO TERMS
d = (aₘ − aₖ) / (m − k), m ≠ k
Given any two terms aₘ and aₖ of an arithmetic sequence, the common difference can be recovered using this ratio—which is structurally identical to the slope formula from coordinate geometry. This is useful when a problem provides non-consecutive terms.

Explicit vs. Recursive — Side-by-Side Breakdown

Understanding when to use each form is as important as knowing the formulas themselves. The explicit and recursive representations each have strengths that make them better suited to different problem contexts. The diagram below provides a structural comparison, followed by a detailed classification table.

A side-by-side comparison of the explicit and recursive forms for the arithmetic sequence 5, 8, 11, 14, 17, … The lower panels demonstrate that finding a₅₀ requires a single substitution in the explicit form but 49 iterative additions in the recursive form.
Comparison of the two standard representations of an arithmetic sequence.
FeatureExplicit FormRecursive Form
Formulaaₙ = a₁ + (n − 1)da₁ = c, aₙ = aₙ₋₁ + d
Inputs neededa₁, d, and the desired index na₁, d, and all prior terms up to n − 1
Time complexityO(1) — constant timeO(n) — linear in n
AnalogyGPS: jump directly to destinationWalking: one step at a time
Typical useFind a specific far-off term or solve for nGenerate sequences iteratively; prove via induction
Generalizes toPolynomial sequences (quadratic, cubic, …)General recurrence relations (Fibonacci, etc.)

Worked Example

The following worked example demonstrates how to move between the two forms and extract information from an arithmetic sequence. It covers identifying the common difference from given terms, writing both the recursive and explicit formulas, finding a distant term, and solving for an index.

From a Partial Sequence to Both Formulas
1
Step 1 — Identify Given InformationSuppose you are given the arithmetic sequence −7, −3, 1, 5, 9, … You need to write the recursive and explicit formulas, find the 40th term, and determine which term equals 121.
2
Step 2 — Determine the Common Difference dCompute the difference between consecutive terms: a₂ − a₁ = −3 − (−7) = 4. Verify: a₃ − a₂ = 1 − (−3) = 4 and a₄ − a₃ = 5 − 1 = 4. Since the difference is constant, d = 4.
d = 4
3
Step 3 — Write the Recursive FormulaThe recursive definition requires a base case and a recurrence relation. With a₁ = −7 and d = 4, the recursive form is: a₁ = −7, aₙ = aₙ₋₁ + 4 for n ≥ 2.
a₁ = −7, aₙ = aₙ₋₁ + 4
4
Step 4 — Write the Explicit FormulaSubstitute a₁ = −7 and d = 4 into the explicit template: aₙ = a₁ + (n − 1)d = −7 + (n − 1)(4) = −7 + 4n − 4 = 4n − 11.
aₙ = 4n − 11
5
Step 5 — Find a₄₀Using the explicit formula: a₄₀ = 4(40) − 11 = 160 − 11 = 149. Using the recursive form would require computing all 39 preceding terms—illustrating the efficiency advantage of the explicit formula.
a₄₀ = 149
6
Step 6 — Find n When aₙ = 121Set the explicit formula equal to 121 and solve for n: 4n − 11 = 121 → 4n = 132 → n = 33. Therefore 121 is the 33rd term of the sequence.
n = 33 (121 is the 33rd term)

Strengths, Limitations & Common Pitfalls

While arithmetic sequences are among the simplest families of sequences, students frequently encounter difficulties that stem from notational confusion, off-by-one errors, or a failure to verify the constant-difference assumption. The following table catalogs common pitfalls alongside the correct reasoning.

Common errors and how to avoid them.
Pitfall / LimitationWhy It HappensCorrect Approach
Using n instead of (n − 1)Confusing 'n steps' with 'n − 1 gaps' between n termsRemember: going from term 1 to term n crosses n − 1 intervals of size d
Assuming a₀-based indexingProgramming languages start arrays at 0; math sequences often start at 1Always clarify the starting index. If a₀ is given, use aₙ = a₀ + nd
Forgetting to verify d is constantChecking only one pair of consecutive termsCheck at least two or three consecutive differences before concluding the sequence is arithmetic
Confusing arithmetic with geometricBoth involve a 'common' parameter (difference vs. ratio)Arithmetic: constant difference (addition). Geometric: constant ratio (multiplication). Test with subtraction vs. division.
Non-integer n from solving aₙ = kThe target value k may not appear in the sequenceIf solving for n yields a non-positive integer, then k is not a term of the sequence
KEY TAKEAWAY
Arithmetic sequences model exclusively linear growth or decay. The moment the differences between consecutive terms are not constant—for instance, if they themselves form a pattern—the sequence is no longer arithmetic and may require quadratic, geometric, or more general recurrence models. Recognizing this boundary is critical before applying any formula.

Connection to Advanced Theory

Arithmetic sequences serve as the entry point to a rich hierarchy of sequence families and summation techniques. The transition from arithmetic to geometric sequences, and eventually to general recurrence relations, mirrors a progression from linear to exponential and beyond. Understanding how arithmetic sequences fit into this broader landscape provides essential context for courses in discrete mathematics, differential equations, and financial mathematics.

Arithmetic sequences in the broader context of sequence families.
PropertyArithmetic SequenceGeometric SequenceGeneral Recurrence
Defining relationaₙ = aₙ₋₁ + daₙ = r × aₙ₋₁aₙ = f(aₙ₋₁, aₙ₋₂, …)
Explicit formaₙ = a₁ + (n − 1)daₙ = a₁ × rⁿ⁻¹May not have a closed form
Growth typeLinearExponentialVaries (polynomial, chaotic, etc.)
Partial sum formulaSₙ = n(a₁ + aₙ)/2Sₙ = a₁(1 − rⁿ)/(1 − r)Often requires generating functions
Financial applicationStraight-line depreciation, fixed salary raisesCompound interest, annuitiesVariable-rate models, stochastic processes

Looking ahead, the partial sum formula for arithmetic series—Sₙ = n(a₁ + aₙ)/2, sometimes attributed to Gauss—leads naturally into the study of series and summation notation. The recursive perspective, meanwhile, generalizes to higher-order recurrence relations (such as the Fibonacci sequence, where each term depends on two predecessors) and ultimately to difference equations, the discrete analog of differential equations. In financial mathematics, recognizing that an annuity's balance follows a first-order linear recurrence with non-constant terms ties directly back to the recursive reasoning developed in this lesson.

Practice Problems

PROBLEM 1CONCEPTUAL
Explain why an arithmetic sequence with common difference d = 0 is still classified as arithmetic. What does its graph look like, and what linear function does its explicit formula represent?
PROBLEM 2BASIC CALCULATION
Given the arithmetic sequence with a₁ = 12 and d = −5, write both the recursive and explicit formulas, then compute a₂₀.
PROBLEM 3INTERMEDIATE
An arithmetic sequence has a₅ = 22 and a₁₂ = 57. Find a₁, d, and the explicit formula. Then determine whether 100 is a term of this sequence.
PROBLEM 4APPLIED
A manufacturing company purchases a machine for $48,000 and uses straight-line depreciation over 15 years, at which point the salvage value is $3,000. Write a recursive and explicit formula for the book value Vₙ at the end of year n (0 ≤ n ≤ 15). What is the book value after 9 years?
PROBLEM 5CRITICAL THINKING
Prove that if {aₙ} and {bₙ} are arithmetic sequences with common differences d₁ and d₂ respectively, then the sequence {cₙ} defined by cₙ = αaₙ + βbₙ (where α, β are real constants) is also arithmetic. What is its common difference?

Lesson Summary

An arithmetic sequence is defined by a constant common difference d between consecutive terms. The explicit formula aₙ = a₁ + (n − 1)d provides direct, O(1) access to any term by treating the sequence as a linear function of the index n, where d acts as the slope. The recursive formula (a₁ = c, aₙ = aₙ₋₁ + d) instead describes the term-by-term generation process, serving as the foundation for iterative computation and mathematical induction proofs.

The two forms are logically equivalent—the explicit formula is obtained by telescoping (unrolling) the recurrence—but they serve different purposes: use the explicit form to find or solve for a specific term efficiently, and the recursive form when modeling step-by-step processes or when a closed form is not yet known. When plotted, arithmetic sequences produce collinear points, reinforcing the deep connection to linear functions. Looking forward, these ideas generalize to geometric sequences, arithmetic series, and broader recurrence relations that appear throughout higher mathematics and applied fields such as financial modeling and computer science.

Varsity Tutors • College Algebra • Arithmetic Sequences: Explicit and Recursive Forms