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.

A343473 G.f.: 1 + (1*x)/(1 + (2*x)^2/(1 + (3*x)^3/(1 + (4*x)^4/(1 + (5*x)^5/(1 + ...))))).

Original entry on oeis.org

1, 1, 0, -4, 0, 16, 108, -64, -864, -2660, -22464, 33968, 272268, 1217152, 4629312, 68208188, -98077824, -1089798320, -5246016084, -32436365248, -180561473568, -3404617719332, 5203858765248, 55902314446832, 354805454664396, 2229923884913920
Offset: 0

Views

Author

Seiichi Manyama, Apr 16 2021

Keywords

Crossrefs

Programs

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