Index of Fibonacci numbers not containing the number 6.
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 22, 25, 26, 28, 29, 30, 32, 33, 34, 36, 37, 40, 43, 44, 45, 47, 49, 52, 56, 60, 62, 66, 67, 70, 75, 77, 83, 101, 104, 112, 116, 129, 135, 137, 142, 143, 145, 187, 258
1
This sequence is probably complete.
T. D. Noe, Plot of 58 terms
(Mma) t = {}; Do[d = IntegerDigits[Fibonacci[n]]; If[! MemberQ[d, 6], AppendTo[t, n]], {n, 0, 1000}]; t
Cf. A076564, A176253, S000217-S000224.
nonn,base
T. D. Noe, Aug 27 2014