login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A360824 Expansion of Sum_{k>0} (k * x)^k / (1 - k * x^k)^(k+1). 2
1, 6, 30, 284, 3130, 47082, 823550, 16782664, 387422928, 10000094720, 285311670622, 8916102486528, 302875106592266, 11112006871683606, 437893890382576560, 18446744074918103056, 827240261886336764194, 39346408075331452862196 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{d|n} d^(d+n/d-1) * binomial(d+n/d-1,d).
If p is prime, a(p) = p + p^p.
MATHEMATICA
a[n_] := DivisorSum[n, #^(# + n/# - 1) * Binomial[# + n/# - 1, #] &]; Array[a, 20] (* Amiram Eldar, Jul 31 2023 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, (k*x)^k/(1-k*x^k)^(k+1)))
(PARI) a(n) = sumdiv(n, d, d^(d+n/d-1)*binomial(d+n/d-1, d));
CROSSREFS
Sequence in context: A215288 A295611 A264641 * A110374 A360831 A232978
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 22 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 11 19:43 EDT 2024. Contains 372413 sequences. (Running on oeis4.)