OFFSET
0,3
COMMENTS
Kunoff proved that the distribution of terms of this sequence follows Benford's law, i.e., the asymptotic density of terms with value d (between 1 and 9) is log_10(1+1/d). - Amiram Eldar, Sep 23 2019
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..10000 (terms 0..1000 from T. D. Noe)
Sharon Kunoff, N! has the first digit property, The Fibonacci Quarterly, Vol. 25, No. 4 (1987), pp. 365-367.
FORMULA
MATHEMATICA
f[n_] := Quotient[n!, 10^Floor@ Log[10, n!]]; Array[f, 105, 0]
PROG
(Haskell)
a008905 = a000030 . a000142 -- Reinhard Zumkeller, Apr 08 2012
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
EXTENSIONS
Two less-efficient Mathematica codings removed by Robert G. Wilson v, Nov 05 2010
STATUS
approved