As well as being given by an explicit formula for ana_n, a sequence can be described by indicating how to build each term starting from the previous ones.

Definition — Sequence by recurrence

A sequence is said to be defined by recurrence if, by assigning the first term (or the first kk terms) and a rule that expresses an+1a_{n+1} in terms of ana_n (or of several previous terms), every subsequent term is determined.

Example — Fibonacci sequence

F0=0F_0 = 0,   F1=1\;F_1 = 1,   Fn+1=Fn+Fn1\;F_{n+1} = F_n + F_{n-1}: 0,1,1,2,3,5,8,13,21,0, 1, 1, 2, 3, 5, 8, 13, 21, \ldots

Topics: Sequences
Concepts: Sequence · Sequence by recurrence
People: Leonardo Fibonacci