OFFSET
1,1
COMMENTS
The Fibonacci indices of the terms are 61, 63, 74, 92, 98, 100, 105, 107, 109, 113, ..., . - Robert G. Wilson v, Mar 26 2008
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
Nathan Egge and Aaron Krowne, List of Fibonacci numbers, Planet Math.
EXAMPLE
The Fibonacci number 2504730781961 contains all the digits 0 to 9 at least once.
MAPLE
with(combinat): a:=proc(n) if `subset`({0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, convert(convert(fibonacci(n), base, 10), set)) = true then fibonacci(n) else end if end proc: seq(a(n), n=1..110); # Emeric Deutsch, Apr 06 2008
MATHEMATICA
Fibonacci[Select[Range[300], Min[DigitCount[Fibonacci[ # ]]] > 0 &]] (* Stefan Steinerberger, Mar 26 2008 *)
Select[Fibonacci[Range[200]], Min[DigitCount[#]]>0&] (* Harvey P. Dale, Apr 21 2022 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Mar 16 2008
EXTENSIONS
More terms from Stefan Steinerberger and Robert G. Wilson v, Mar 26 2008
STATUS
approved