Logo
Overview

Patterns in Square Numbers

April 10, 2024
1 min read

1. Adding Odd Numbers

There is a beautiful relationship between squares and odd numbers. Every square number is the sum of consecutive odd numbers starting from 1.

1=1=121+3=4=221+3+5=9=321+3+5+7=16=42\begin{aligned} 1 &= 1 = 1^2 \\ 1 + 3 &= 4 = 2^2 \\ 1 + 3 + 5 &= 9 = 3^2 \\ 1 + 3 + 5 + 7 &= 16 = 4^2 \end{aligned}

General Rule: The sum of the first nn odd natural numbers is n2n^2.

Visual Proof

We can visualize this by adding “layers” (L-shapes) to a square.

11+31+3+5

2. Triangular Numbers

Triangular numbers are numbers that can form a triangle: 1,3,6,10,151, 3, 6, 10, 15 \dots. If you add two consecutive triangular numbers, you get a square number!

  • 1+3=4=221 + 3 = 4 = 2^2
  • 3+6=9=323 + 6 = 9 = 3^2
  • 6+10=16=426 + 10 = 16 = 4^2
136

3. Numbers Between Squares

How many non-square numbers lie between two consecutive squares n2n^2 and (n+1)2(n+1)^2?

Let’s check:

  • Between 12(1)1^2 (1) and 22(4)2^2 (4): 2, 3 (2 numbers)
  • Between 22(4)2^2 (4) and 32(9)3^2 (9): 5, 6, 7, 8 (4 numbers)
  • Between 32(9)3^2 (9) and 42(16)4^2 (16): 10, 11, 12, 13, 14, 15 (6 numbers)

Pattern: There are 2n2n non-square numbers between n2n^2 and (n+1)2(n+1)^2.