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.

A360989 E.g.f. satisfies A(x) = exp(x / A(-x)^2).

Original entry on oeis.org

1, 1, 5, 1, -231, 81, 55453, -40431, -30313231, 33477985, 29630916981, -43713004191, -45378051616631, 83666428734513, 100216964952070541, -221570666935625999, -301515678925659598623, 777062158771833364929, 1185517627245415533666277
Offset: 0

Views

Author

Seiichi Manyama, Feb 27 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n, (-2*n+2*k+1)^(k-1)*(2*k)^(n-k)*binomial(n, k));

Formula

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