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

A354892
a(n) = n! * Sum_{d|n} d^n / (n/d)!.
7
1, 9, 163, 6337, 375001, 33862441, 4150656721, 677778984961, 140588337476161, 36305718780965761, 11388728893445164801, 4271349071581227377281, 1886009588552176549862401, 968755330019156299208709121, 572622623006183707899105964801
OFFSET
1,2
LINKS
FORMULA
E.g.f.: Sum_{k>0} (exp((k * x)^k) - 1).
If p is prime, a(p) = 1 + p^p * p!.
MATHEMATICA
a[n_] := n! * DivisorSum[n, #^n/(n/#)! &]; Array[a, 15] (* Amiram Eldar, Jun 10 2022 *)
PROG
(PARI) a(n) = n!*sumdiv(n, d, d^n/(n/d)!);
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=1, N, exp((k*x)^k)-1)))
CROSSREFS
Sequence in context: A212334 A377330 A354900 * A377329 A086759 A053130
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 10 2022
STATUS
approved