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!)
A353013 a(n) = Sum_{k=0..floor(n/2)} (n-2*k)^(n-k). 4
1, 1, 4, 28, 264, 3207, 47696, 839412, 17061280, 393264145, 10135913792, 288839201432, 9017184333440, 306045200463519, 11220008681600256, 441866073895351128, 18603606156815235584, 833860238440653331505, 39643749441387211150336 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: Sum_{k>=0} (k * x)^k / (1 - k * x^2).
MATHEMATICA
a[0] = 1; a[n_] := Sum[(n - 2*k)^(n - k), {k, 0, Floor[n/2]}]; Array[a, 20, 0] (* Amiram Eldar, Apr 16 2022 *)
PROG
(PARI) a(n) = sum(k=0, n\2, (n-2*k)^(n-k));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (k*x)^k/(1-k*x^2)))
CROSSREFS
Sequence in context: A292810 A368892 A360727 * A284756 A316144 A138272
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Apr 16 2022
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 July 16 21:48 EDT 2024. Contains 374358 sequences. (Running on oeis4.)