Math Fundamentals18 sections · 814 units
Open in Course

Geometric Sequence - Example

Powers of two

The sequence 1,2,4,8,16,...1, 2, 4, 8, 16, ... represents powers of 22. This is a geometric sequence with a1=1a_1 = 1 and r=2r = 2.

Using the formula an=1×2n1=2n1a_n = 1 \times 2^{n-1} = 2^{n-1}, the 10th term is a10=29=512a_{10} = 2^9 = 512.

Geometric sequences with r=2r = 2 appear in algorithm analysis (binary trees, divide-and-conquer), bit manipulation (binary representation), and exponential growth problems.