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!)
A360754 Expansion of Sum_{k>0} (k * x * (1 + (2 * x)^k))^k. 0
1, 6, 27, 288, 3125, 47368, 823543, 16793600, 387425673, 10000500000, 285311670611, 8916118771200, 302875106592253, 11112007563452544, 437893890412859375, 18446744108073484288, 827240261886336764177, 39346408077084637733376 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{d|n} 2^(n-d) * d^d * binomial(d,n/d-1).
If p is an odd prime, a(p) = p^p.
MATHEMATICA
a[n_] := DivisorSum[n, 2^(n-#) * #^# * 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, (k*x*(1+(2*x)^k))^k))
(PARI) a(n) = sumdiv(n, d, 2^(n-d)*d^d*binomial(d, n/d-1));
CROSSREFS
Cf. A360732.
Sequence in context: A351737 A047778 A290802 * A367886 A351735 A322233
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 19 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 April 30 12:41 EDT 2024. Contains 372134 sequences. (Running on oeis4.)