Index of Fibonacci numbers not containing the number 1.
0, 3, 4, 5, 6, 9, 10, 11, 13, 14, 16, 18, 20, 23, 24, 25, 30, 33, 34, 35, 39, 43, 48, 49, 66, 77, 104, 123, 124, 129, 211
1
This sequence is probably complete.
T. D. Noe, Plot of 31 terms
(Mma) t = {}; Do[d = IntegerDigits[Fibonacci[n]]; If[! MemberQ[d, 1], AppendTo[t, n]], {n, 0, 1000}]; t
Cf. A076564, A176253, S000218-S000224.
nonn,base
T. D. Noe, Aug 27 2014