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!)
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 (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).
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
Sequence in context: A230563 A204266 A266204 * A360726 A360712 A300621
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 20 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 26 15:02 EDT 2024. Contains 375456 sequences. (Running on oeis4.)