Index of Fibonacci numbers not containing the number 3.
0, 1, 2, 3, 5, 6, 8, 10, 11, 12, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 27, 29, 34, 35, 37, 41, 42, 48, 49, 50, 54, 58, 59, 60, 65, 72, 75, 85, 89, 111, 114, 144, 223
1
This sequence is probably complete.
T. D. Noe, Plot of 43 terms
(Mma) t = {}; Do[d = IntegerDigits[Fibonacci[n]]; If[! MemberQ[d, 3], AppendTo[t, n]], {n, 0, 1000}]; t
Cf. A076564, A176253, S000217-S000224.
nonn,base
T. D. Noe, Aug 27 2014