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

%I #14 Feb 18 2023 22:48:57

%S 1,1,5,35,341,4230,63844,1135753,23273363,539881365,13986073419,

%T 400227436252,12538263892232,426810214125441,15687071552060221,

%U 619144491880324087,26117514728711229877,1172635546310430028562,55833864788507320490268

%N Expansion of Sum_{k>=0} (k * x * (1 + x))^k.

%H Winston de Greef, <a href="/A360611/b360611.txt">Table of n, a(n) for n = 0..385</a>

%F a(n) = Sum_{k=0..floor(n/2)} (n-k)^(n-k) * binomial(n-k,k).

%F a(n) ~ exp(exp(-1)) * n^n. - _Vaclav Kotesovec_, Feb 14 2023

%t Flatten[{1, Table[Sum[Binomial[n-k, k] * (n-k)^(n-k), {k, 0, n/2}], {n, 1, 20}]}] (* _Vaclav Kotesovec_, Feb 14 2023 *)

%o (PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0,N, (k*x*(1+x))^k))

%o (PARI) a(n) = sum(k=0,n\2, (n-k)^(n-k)*binomial(n-k, k));

%Y Cf. A355494, A360592.

%K nonn

%O 0,3

%A _Seiichi Manyama_, Feb 14 2023

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 21 19:35 EDT 2024. Contains 372738 sequences. (Running on oeis4.)