cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A349889 a(n) = Sum_{k=0..n} (-1)^(n-k) * k^(2*n).

Original entry on oeis.org

1, 1, 15, 666, 59230, 8775075, 1948891581, 605698755508, 250914820143996, 133610836793706405, 88919025666286620475, 72317513878698256697166, 70571883548815735717843290, 81383769918571603591381635271
Offset: 0

Views

Author

Seiichi Manyama, Dec 04 2021

Keywords

Crossrefs

Programs

  • Mathematica
    Join[{1},Table[Sum[(-1)^(n-k) k^(2n),{k,0,n}],{n,20}]] (* Harvey P. Dale, Nov 19 2023 *)
  • 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)))

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