OFFSET
0,3
COMMENTS
Also multiplicative digital root of n!.
a(n) = 0 for n >= 5.
Decimal expansion of 2817/2500. - Eric Chen, Jun 06 2018
MATHEMATICA
Array[Times @@ IntegerDigits[#!] &, 105] (* Michael De Vlieger, Jun 06 2018 *)
PROG
(Magma) [&*Intseq(Factorial(n)): n in [0..100]]
(PARI) a(n) = my(d=digits(n!)); prod(k=1, #d, d[k]); \\ Michel Marcus, Jun 05 2018
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jaroslav Krizek, Jun 05 2018
STATUS
approved