login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A244060 Sum of digits of (2^n)!. 2
1, 2, 6, 9, 63, 108, 324, 828, 1989, 4635, 10845, 24363, 54279, 118827, 258705, 565389, 1216134, 2611359, 5584518, 11875977, 25184205, 53209728, 112069377, 235502361, 493827687, 1033041267, 2156974227, 4495662081, 9355185828, 19437382512, 40329016200 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A007953(A000722(n)). - Michel Marcus, Jun 19 2014
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
Sequence in context: A240761 A342317 A117541 * A333185 A236106 A095105
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 02:04 EDT 2024. Contains 371782 sequences. (Running on oeis4.)