·        A recurrence relation is an equation that recursively defines a sequence: each term of the sequence is defined as a function of the preceding terms.

·        The Fibonacci numbers are the numbers in the following sequence: 1, 1, 2, 3, 5, 8, 13, 21, 34, …

In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation

cid:image002.png@01CAD5EC.ACF4C140

with seed values

cid:image003.png@01CAD5EC.ACF4C140

 

·        Your question requires us to find the recurrence relation for the number of binary sequences of length n that have no consecutive 0’s.

·        Let an be the number of such sequences with length n, where n>0.

·        It’s easy to figure out a1and a2:  a1=2 (0 or 1) and a2=3 (10, 11, 01).

·        There are two cases for an:

1.     if the nth symbol is 1: the preceding n-1 symbols sequence is counted in an-1

2.     if the nth symbol is 0: an ends in 10 and the preceding n-2 symbols sequence is counted in an-2.

·        Therefore, an=an-1+an-2.

·        an produces the following series:                  2, 3, 5, 8, 13, etc.

·        Compare this to the Fibonacci series: 1, 1, 2, 3, 5, 8, 13, etc.

·        As you can see from the above two series, an=F(n+2)