A177246 Fibonacci numbers whose decimal expansion does not contain any digit 4.
1, 1, 2, 3, 5, 8, 13, 21, 55, 89, 233, 377, 610, 987, 1597, 6765, 17711, 28657, 75025, 121393, 317811, 2178309, 5702887, 39088169, 1836311903, 2971215073, 12586269025, 32951280099, 53316291173, 86267571272, 591286729879
Offset: 1
Examples
a(9)=55 is the 9th Fibonacci having no digit 4's.
Links
- Robert Israel, Table of n, a(n) for n = 1..41 (conjectured to be complete)
Programs
-
Maple
remove(t -> has(convert(t,base,10),4), map(combinat:-fibonacci, [$1..1000])); # Robert Israel, Dec 13 2018
-
Mathematica
Select[Fibonacci@Range@114, !MemberQ[IntegerDigits[#], 4] &] (* Amiram Eldar, Dec 13 2018 *)
Comments