The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A360611 Expansion of Sum_{k>=0} (k * x * (1 + x))^k. 7
1, 1, 5, 35, 341, 4230, 63844, 1135753, 23273363, 539881365, 13986073419, 400227436252, 12538263892232, 426810214125441, 15687071552060221, 619144491880324087, 26117514728711229877, 1172635546310430028562, 55833864788507320490268 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (n-k)^(n-k) * binomial(n-k,k).
a(n) ~ exp(exp(-1)) * n^n. - Vaclav Kotesovec, Feb 14 2023
MATHEMATICA
Flatten[{1, Table[Sum[Binomial[n-k, k] * (n-k)^(n-k), {k, 0, n/2}], {n, 1, 20}]}] (* Vaclav Kotesovec, Feb 14 2023 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (k*x*(1+x))^k))
(PARI) a(n) = sum(k=0, n\2, (n-k)^(n-k)*binomial(n-k, k));
CROSSREFS
Sequence in context: A262248 A346666 A369724 * A201367 A233860 A258902
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 14 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 June 4 19:15 EDT 2024. Contains 373102 sequences. (Running on oeis4.)