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”).

A336247
a(n) = (n!)^n * Sum_{k=0..n} 1 / (k!)^n.
5
1, 2, 9, 460, 684545, 50547203126, 280807908057046657, 165858480204085842350156792, 13997217669604247492958380810030809089, 218434494471443385260764665498960241287478619115850, 792268399795067334328715213043856435592857850955707257780000000001
OFFSET
0,2
LINKS
MATHEMATICA
Table[(n!)^n Sum[1/(k!)^n, {k, 0, n}], {n, 0, 10}]
PROG
(PARI) a(n) = (n!)^n * sum(k=0, n, 1/(k!)^n); \\ Michel Marcus, Jul 14 2020
CROSSREFS
Main diagonal of A343863.
Sequence in context: A000883 A086693 A085605 * A180936 A036878 A162710
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 14 2020
STATUS
approved