Index of Fibonacci numbers not containing the number 8.
0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 17, 20, 21, 22, 25, 26, 29, 31, 35, 36, 40, 42, 43, 45, 47, 51, 53, 57, 59, 69, 70, 76, 79, 82, 91, 95, 108, 112, 133, 142
1
This sequence is probably complete.
T. D. Noe, Plot of 44 terms
(Mma) t = {}; Do[d = IntegerDigits[Fibonacci[n]]; If[! MemberQ[d, 8], AppendTo[t, n]], {n, 0, 1000}]; t
Cf. A076564, A176253, S000217-S000224.
nonn,base
T. D. Noe, Aug 27 2014