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

A336999
a(n) = n! * Sum_{d|n} n^d / d!.
0
1, 8, 45, 544, 3725, 89856, 858823, 25271296, 434776329, 13241728000, 285750755411, 11494661861376, 302956057862653, 12945137688641536, 446924199188379375, 20735627677666902016, 827246308572614396177, 43155924331583693389824
OFFSET
1,2
FORMULA
a(n) = n! * [x^n] Sum_{k>=1} (exp(n*x^k) - 1).
MATHEMATICA
Table[n! Sum[n^d/d!, {d, Divisors[n]}], {n, 1, 18}]
Table[n! SeriesCoefficient[Sum[(Exp[n x^k] - 1), {k, 1, n}], {x, 0, n}], {n, 1, 18}]
PROG
(PARI) a(n) = n! * sumdiv(n, d, n^d/d!); \\ Michel Marcus, Aug 12 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 10 2020
STATUS
approved