OFFSET
0,8
LINKS
FORMULA
a(n) = A034886(n) - (A079680(n) + A079714(n) + A079684(n) + A079688(n) + A079690(n) + A079691(n) + A079692(n) + A079693(n) + A079694(n)). - Reinhard Zumkeller, Jan 27 2008
A027868(n) <= a(n). - Reinhard Zumkeller, Jan 27 2008
Conjecture: a(n) ~ (9*A027868(n) + A034886(n))/10. This formula is based on the assumption that the digits other than trailing zeros are uniformly randomly distributed. - Nicolas Bělohoubek, Jan 11 2022
MATHEMATICA
Table[Count[IntegerDigits[n!], 0], {n, 0, 100}] (* T. D. Noe, Apr 10 2012 *)
DigitCount[Range[0, 80]!, 10, 0] (* Harvey P. Dale, Jul 08 2020 *)
PROG
(PARI) a(n)=my(d=digits(n!)); sum(i=1, #d, d[i]==0) \\ Charles R Greathouse IV, Jul 06 2017
(Python)
from math import factorial
def a(n): return str(factorial(n)).count('0')
print([a(n) for n in range(74)]) # Michael S. Branicky, Jan 11 2022
CROSSREFS
KEYWORD
nonn,base
AUTHOR
STATUS
approved