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!)
A352082 a(n) = Sum_{k=0..floor(n/2)} (n-2*k)^n. 3
1, 1, 4, 28, 272, 3369, 50816, 903856, 18522624, 429746905, 11135257600, 318719062236, 9987013488640, 340037795872369, 12500401969233920, 493467700789897408, 20819865970795610112, 934939160745193002321, 44523294861684890664960 (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).
Conjecture: a(n) = (1 - 2^n)*zeta(-n) - (2^n)*zeta(-n, n/2 + 1) for n > 0, where the bivariate zeta function is the Hurwitz zeta function. - Velin Yanev, Mar 25 2024
a(n) ~ n^n / (1 - exp(-2)). - Vaclav Kotesovec, Mar 25 2024
MATHEMATICA
a[0] = 1; a[n_] := Sum[(n-2*k)^n, {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);
(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: A129683 A367474 A360730 * A081917 A302583 A302605
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)