[go: up one dir, main page]

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!)
A360732 Expansion of Sum_{k>0} (k * x * (1 + (k * x)^k))^k. 4
1, 5, 27, 288, 3125, 48907, 823543, 17039360, 387479538, 10048828125, 285311670611, 8929262337009, 302875106592253, 11116754387067959, 437894195556640625, 18448995890703106048, 827240261886336764177, 39347760450413560593753 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{d|n} d^n * binomial(d,n/d-1).
If p is an odd prime, a(p) = p^p.
MATHEMATICA
a[n_] := DivisorSum[n, #^n * Binomial[#, n/# - 1] &]; Array[a, 20] (* Amiram Eldar, Aug 09 2023 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, (k*x*(1+(k*x)^k))^k))
(PARI) a(n) = sumdiv(n, d, d^n*binomial(d, n/d-1));
CROSSREFS
Sequence in context: A360712 A300621 A265907 * A135627 A244655 A002401
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 18 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 August 30 19:33 EDT 2024. Contains 375545 sequences. (Running on oeis4.)