OFFSET
1,10
COMMENTS
One or more digits can occur with the highest frequency.
LINKS
Carmine Suriano, Table of n, a(n) for n = 1..1150
EXAMPLE
a(22) = 3 since Fib(22) = 17711 and the most frequent decimal digit (1) occurs 3 times.
MATHEMATICA
Table[Max[DigitCount[Fibonacci[n]]], {n, 100}] (* Harvey P. Dale, Jun 25 2017 *)
PROG
(Sage) def A180580(n): return max(fibonacci(n).digits().count(d) for d in [0..9])
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Carmine Suriano, Jan 21 2011
STATUS
approved