To find b6, we have to find all 6 digit numbers ending with '1' such that no consecutive digits are '0'. Some of the examples possible are :
- 1 0 1 1 1 1
- 1 0 1 0 1 1
- 1 1 1 1 1 1
Three cases possible:
- One zero- It can be placed in any of the four places. So, we get '4' such six digit numbers.
- Two zeros- We get '3' such six digit numbers possible.
- No zeros- We get only '1' such six digit number.
Hence b6 = 4 + 3 + 1 = 8