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.

A343441 G.f.: 1 + C(1)*x/(1 + C(2)*x/(1 + C(3)*x/(1 + C(4)*x/(1 + C(5)*x/(1 +...))))), where C(n) are the Catalan numbers A000108.

Original entry on oeis.org

1, 1, -2, 14, -238, 10486, -1360142, 566636294, -790250356798, 3769300938094006, -62394920105801115182, 3626853378943129415555174, -747708300997964314376024192158, 551445848326104642338923476399909526, -1465934793325188376367147565710854513799822, 14139840911021914090289579305382872859520174083654
Offset: 0

Views

Author

Seiichi Manyama, Apr 15 2021

Keywords

Crossrefs

Programs

  • PARI
    c(n) = binomial(2*n, n)/(n+1);
    a(n) = my(A=1+O(x)); for(i=1, n, A=1+c(n-i+1)*x/A); polcoef(A, n);

Formula

G.f.: 1/(Sum_{k>=0} A268646(k) * (-x)^k).