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.

A000635 Number of paraffins C_n H_{2n} X Y with n carbon atoms.

Original entry on oeis.org

0, 1, 2, 5, 12, 31, 80, 210, 555, 1479, 3959, 10652, 28760, 77910, 211624, 576221, 1572210, 4297733, 11767328, 32266801, 88594626, 243544919, 670228623, 1846283937, 5090605118, 14047668068, 38794922293, 107215238057, 296501478704
Offset: 0

Views

Author

Keywords

References

  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Programs

  • Mathematica
    terms = 29; B[] = 0; Do[B[x] = 1 + (1/6)*x*(B[x]^3 + 3*B[x]*B[x^2] + 2*B[x^3]) + O[x]^terms // Normal, terms];
    B642[x_] = (1/2)*x*(B[x^2] + B[x]^2) + O[x]^terms;
    A[x_] = B642[x]/(1 - B642[x]);
    CoefficientList[A[x], x] (* Jean-François Alcover, Oct 21 2011, updated Jan 10 2018 *)

Formula

G.f.: A(x) = B(x)/(1-B(x)), B(x) = g.f. for A000642.