The triangular numbers count objects arranged in growing equilateral triangles: one in the first row, two in the second, three in the third. Each triangular number is a partial sum of the natural numbers, giving them a direct connection to arithmetic series. They appear throughout mathematics — in binomial coefficients, in the relationship between consecutive squares, and in counting problems.
Definition
The n-th triangular number Tn is the sum of the first n positive integers:
Tn=1+2+3+⋯+n=2n(n+1)
The name comes from a geometric construction: arrange dots in rows of increasing length to form an equilateral triangle. Row 1 has 1 dot, row 2 has 2, row 3 has 3, and the total count after n rows is Tn.
The first triangular numbers are:
1,3,6,10,15,21,28,36,45,55,…
The closed form 2n(n+1) follows from the arithmetic series formula with a1=1 and d=1. The Gauss pairing argument applies directly: Tn=2n(1+n).
Recursive Form
Each triangular number is the previous one plus a new row of n dots:
T1=1,Tn=Tn−1+n
This recursive definition makes the growth pattern visible — the increments 1,2,3,4,5,… are themselves the natural numbers. The triangular numbers grow faster than a linear sequence (where increments are constant) but slower than an exponential one.
The increments form an arithmetic sequence with common difference 1. The triangular numbers are therefore the partial sums of an arithmetic sequence — they accumulate linearly growing additions.
Derivation of the Closed Form
The formula Tn=2n(n+1) can be derived by the pairing method. Write the sum forwards and backwards:
S=1+2+3+⋯+n
S=n+(n−1)+(n−2)+⋯+1
Adding term by term: each pair sums to n+1, and there are n pairs, giving 2S=n(n+1) and S=2n(n+1).
An alternative perspective: Tn=(2n+1), the number of ways to choose 2 items from a set of n+1. The binomial coefficient (2n+1)=2!(n−1)!(n+1)!=2(n+1)n yields the same formula. This connection places triangular numbers inside combinatorics — they count unordered pairs. For example, T4=10 equals the number of handshakes among 5 people.
Properties
The parity of triangular numbers follows a repeating cycle. Tn is odd when n≡1 or 2(mod4), and even when n≡0 or 3(mod4). The pattern of parities is odd, odd, even, even, odd, odd, even, even, ….
The sum of two consecutive triangular numbers is a perfect square:
Tn+Tn−1=2n(n+1)+2(n−1)n=n2
Geometrically, two triangles of consecutive sizes fit together to form a square. This identity connects the two simplest figurate number sequences.
A number m is triangular if and only if 8m+1 is a perfect square. Solving m=2n(n+1) for n gives n=2−1+1+8m, which is a positive integer precisely when 8m+1 is a perfect square. This provides a direct test: m=15 gives 8(15)+1=121=112, so 15 is triangular (T5=15).
The sum of the first n triangular numbers produces the tetrahedral numbers:
k=1∑nTk=6n(n+1)(n+2)
This extends the figurate number idea from two dimensions (triangles) to three (tetrahedra).