Math Fundamentals18 sections · 814 units
Open in Course

Sequence Notation

How to write sequences

You write sequences using subscript notation. The general term is ana_n where nn is the position (starting from 11).

For the sequence 3,6,9,12,...3, 6, 9, 12, ..., you can write an=3na_n = 3n. This formula tells you the nn-th term: a1=3(1)=3a_1 = 3(1) = 3, a2=3(2)=6a_2 = 3(2) = 6, and so on.

Having a formula for ana_n lets you find any term directly without computing all previous terms. This is like array indexing with a formula instead of storage.