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

A327578
a(n) = n! * Sum_{d|n} d^(n/d - 1) / d!.
8
1, 3, 7, 49, 121, 2521, 5041, 208321, 907201, 32810401, 39916801, 10621860481, 6227020801, 2877004690561, 19233710496001, 1415779600435201, 355687428096001, 1085522620595212801, 121645100408832001, 653741050484890368001, 6259137133527742464001, 576612373659657208473601
OFFSET
1,2
LINKS
FORMULA
E.g.f.: Sum_{k>=1} x^k / (k! * (1 - k * x^k)).
MATHEMATICA
a[n_] := n! Sum[d^(n/d - 1)/d!, {d, Divisors[n]}]; Table[a[n], {n, 1, 22}]
nmax = 22; CoefficientList[Series[Sum[x^k/(k! (1 - k x^k)), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
PROG
(PARI) a(n) = n! * sumdiv(n, d, d^(n/d - 1) / d!); \\ Michel Marcus, Sep 17 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 17 2019
STATUS
approved