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!)
A349889 a(n) = Sum_{k=0..n} (-1)^(n-k) * k^(2*n). 3
1, 1, 15, 666, 59230, 8775075, 1948891581, 605698755508, 250914820143996, 133610836793706405, 88919025666286620475, 72317513878698256697166, 70571883548815735717843290, 81383769918571603591381635271 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: Sum_{k>=0} (k^2 * x)^k/(1 + k^2 * x).
a(n) ~ 1/(1 + exp(-2)) * n^(2*n). - Vaclav Kotesovec, Dec 10 2021
MATHEMATICA
Join[{1}, Table[Sum[(-1)^(n-k) k^(2n), {k, 0, n}], {n, 20}]] (* Harvey P. Dale, Nov 19 2023 *)
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*k^(2*n));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (k^2*x)^k/(1+k^2*x)))
CROSSREFS
Sequence in context: A280179 A223203 A279465 * A279531 A079600 A171113
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 04 2021
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 March 28 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)