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.

A347985 a(n) = [x^n] (2*n)! * Sum_{k=0..2*n} binomial(x-2*n,k).

Original entry on oeis.org

1, -3, 131, -8955, 893249, -117408375, 19180128407, -3747886705563, 852713408774513, -221431482383149467, 64629367172619230475, -20945446993569455512155, 7463226827397324296491489, -2899926767958744905966692575
Offset: 0

Views

Author

Seiichi Manyama, Sep 24 2021

Keywords

Crossrefs

Cf. A054649.

Programs

  • PARI
    a(n) = (2*n)!*polcoef(sum(k=n, 2*n, binomial(x-2*n, k)), n);

Formula

a(n) = A054649(2*n,n).