The correct option is
A a17=a16+a15In such a number either last digit is
′0′ or
′1′When you consider
′a′1, only one number is possible i.e.
1When you consider
′a′2, 2 such numbers are possible i.e.
10,
11When you consider
′a′3, 3 such numbers are possible i.e.
101,
111,
110When you consider
′a′4, 5 such numbers are possible i.e.
1010,
1011,
1110,
1101,
1111By observing this we get a relationship which is
an = an−1 + an−2So,
a17 = a16 + a15
(Alternate Method)
Using Recursion formula
an=an−1+an−2
Similarly, bn=bn−1+bn−2 and cn=cn−1+cn−2 ∀ n≥3
and an=bn+cn ∀ n≥1
So, a1=1,a2=2,a3=3,a4=5,a5=8 .......
b1=1,b2=1,b3=2,b4=3,b5=5,b6=8 .......
c1=0,c2=1,c3=1,c4=2,c5=3,c6=5 .......
Using this we get bn−1=cn
∴a17=a16+a15