OFFSET
0,2
FORMULA
EXAMPLE
If n=4, 2^4! = 16! = 20922789888000, with digit sum 63. - N. J. A. Sloane, Jun 18 2014
MATHEMATICA
f[n_] := Total[ IntegerDigits[ (2^n)!]]; Array[f, 20, 0]
PROG
(PARI) a(n) = sumdigits((2^n)!); \\ Michel Marcus, Oct 25 2021
(Python)
from math import factorial
def A244060(n): return sum(int(d) for d in str(factorial(2**n))) # Chai Wah Wu, Oct 26 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Robert G. Wilson v, Jun 18 2014
EXTENSIONS
a(26)-a(30) from Chai Wah Wu, Oct 25 2021
STATUS
approved