login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A336248
a(n) = (n!)^n * Sum_{k=0..n} (-1)^k / (k!)^n.
1
1, 0, 1, 26, 20481, 774403124, 2173797080953345, 645067515585218711490294, 27280857986486289638369834192338945, 213095986405176211170558965907644717041658073416, 386654453940903446694477049963665295677203885863801760000000001
OFFSET
0,4
MATHEMATICA
Table[(n!)^n Sum[(-1)^k/(k!)^n, {k, 0, n}], {n, 0, 10}]
PROG
(PARI) a(n) = (n!)^n * sum(k=0, n, (-1)^k / (k!)^n); \\ Michel Marcus, Jul 14 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 14 2020
STATUS
approved