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!)
A352983 a(n) = Sum_{k=0..floor(n/2)} k^(2*n). 5
1, 0, 1, 1, 257, 1025, 535538, 4799354, 4338079554, 69107159370, 96470431101379, 2401809362313955, 4798267740520031875, 172076350440523281571, 466164803742660494432996, 22761346686115003736962100, 80340572151131167125889902852 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
G.f.: Sum_{k>=0} (k^2 * x)^(2 * k) / (1 - k^2 * x).
a(n) ~ exp(3 + (-1)^n) * (n/2)^(2*n) / (exp(4) - 1). - Vaclav Kotesovec, Apr 14 2022
MATHEMATICA
a[0] = 1; a[n_] := Sum[k^(2*n), {k, 0, Floor[n/2]}]; Array[a, 17, 0] (* Amiram Eldar, Apr 13 2022 *)
PROG
(PARI) a(n) = sum(k=0, n\2, k^(2*n));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (k^2*x)^(2*k)/(1-k^2*x)))
CROSSREFS
Sequence in context: A202372 A363715 A036549 * A031710 A253419 A070184
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Apr 13 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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)