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!)
A360727 Expansion of Sum_{k>=0} (k * x * (1 + x^2))^k. 5
1, 1, 4, 28, 264, 3206, 47684, 839249, 17058688, 393216567, 10134918592, 288815780665, 9016571143680, 306027510946208, 11219450971161024, 441846991480590475, 18602901833071633792, 833832341625621777368, 39642569136740054367808 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/3)} (n-2*k)^(n-2*k) * binomial(n-2*k,k).
a(n) ~ n^n * (1 + exp(-2)/n + exp(-4)/(2*n^2)). - Vaclav Kotesovec, Feb 18 2023
MATHEMATICA
nmax = 20; CoefficientList[1 + Series[Sum[(k*x*(1 + x^2))^k, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Feb 18 2023 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (k*x*(1+x^2))^k))
(PARI) a(n) = sum(k=0, n\3, (n-2*k)^(n-2*k)*binomial(n-2*k, k));
CROSSREFS
Cf. A360730.
Sequence in context: A260775 A292810 A368892 * A353013 A284756 A316144
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 June 28 18:10 EDT 2024. Contains 373800 sequences. (Running on oeis4.)