Question
Find the sum S=1×2+2×3+3×4+⋯+n(n+1).
Express the answer as a closed-form formula in terms of n and verify for n=3.
Solution — Step by Step
The k-th term of the series is k(k+1).
We need: Sn=∑k=1nk(k+1)
Expand k(k+1)=k2+k.
So: Sn=∑k=1n(k2+k)=∑k=1nk2+∑k=1nk
We use two well-known formulas:
k=1∑nk=2n(n+1)
k=1∑nk2=6n(n+1)(2n+1)
Substituting:
Sn=6n(n+1)(2n+1)+2n(n+1)
Sn=6n(n+1)(2n+1)+63n(n+1)=6n(n+1)[(2n+1)+3]
Sn=6n(n+1)(2n+4)=6n(n+1)⋅2(n+2)
Sn=3n(n+1)(n+2)
LHS = 1×2+2×3+3×4=2+6+12=20
RHS = 33×4×5=360=20 ✓
Why This Works
The trick in this problem is recognizing that k(k+1) is a product of two consecutive integers, which expands to k2+k. This splits the series into two standard summations that we already know formulas for.
The result 3n(n+1)(n+2) is clean because it involves three consecutive integers n,n+1,n+2. This is actually 31 of the product n(n+1)(n+2), which relates to counting combinations: (3n+2)×2=3n(n+1)(n+2).
Alternative Method
There’s an elegant “telescoping” approach using the fact that k(k+1)=3k(k+1)(k+2)−(k−1)k(k+1).
Summing from k=1 to n, most terms cancel (telescope), and we directly get:
Sn=3n(n+1)(n+2)
This avoids needing the ∑k2 formula entirely, and is a powerful technique for products of consecutive integers.
This type of series (product of consecutive integers) appears in CBSE Class 11 sequences and series, and in JEE. The key pattern: k(k+1)→3n(n+1)(n+2), k(k+1)(k+2)→4n(n+1)(n+2)(n+3). Each time, the number of terms increases by 1 and the denominator increases by 1. Memorize this pattern — it speeds up calculation significantly.
Common Mistake
The most common error is forgetting to find a common denominator when adding the two standard sums. Students compute 6n(n+1)(2n+1)+2n(n+1) and incorrectly add the numerators without converting to a common denominator. To add these fractions, multiply the second term by 33: 2n(n+1)=63n(n+1). Then add normally. Skipping this step gives a wrong final formula.