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.

Showing 1-2 of 2 results.

A343420 G.f.: 1/(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, 1, 5, 9, 29, 173, 397, 1629, 7105, 47317, 136649, 612009, 3239657, 16725833, 144512653, 442002033, 2348928709, 13503344821, 87284090069, 570544117893, 6090993985577, 19814091021725, 112414559500753, 771831588041361, 5354065003116817, 43960328737547473
Offset: 0

Views

Author

Seiichi Manyama, Apr 16 2021

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 26;
    CoefficientList[1/(1 + ContinuedFractionK[-(k x)^k, 1, {k, 1, nmax}]) + O[x]^(nmax+1), x] (* Jean-François Alcover, Apr 18 2021 *)
  • PARI
    a(n) = my(A=1+O(x)); for(i=1, n, A=1-((n-i+1)*x)^(n-i+1)/A); polcoef(1/A, n);

A343468 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, -2, 0, 4, 6, -8, -24, -2, 48, 76, -42, -224, -144, 406, 744, -332, -2154, -1400, 4320, 7702, -2016, -21428, -17802, 34216, 76152, -5210, -195816, -181916, 300510, 772432, 53136, -1851770, -2055360, 2388772, 7515246, 1755880, -16586616, -21354266, 19195248, 72641884, 27527118
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);
Showing 1-2 of 2 results.