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

A360770
Expansion of Sum_{k>0} (x * (k + x^k))^k.
0
1, 5, 27, 260, 3125, 46684, 823543, 16777472, 387420498, 10000003125, 285311670611, 8916100495009, 302875106592253, 11112006826381559, 437893890380860625, 18446744073726328848, 827240261886336764177, 39346408075296925015353
OFFSET
1,2
FORMULA
a(n) = Sum_{d|n} d^(d-n/d+1) * binomial(d,n/d-1).
If p is an odd prime, a(p) = p^p.
MATHEMATICA
a[n_] := DivisorSum[n, #^(# - n/# + 1) * Binomial[#, n/# - 1] &]; Array[a, 20] (* Amiram Eldar, Aug 02 2023 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, (x*(k+x^k))^k))
(PARI) a(n) = sumdiv(n, d, d^(d-n/d+1)*binomial(d, n/d-1));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 20 2023
STATUS
approved