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.

A027636 Expansion of (1+x^19)/((1-x^2)*(1-x^4)^2*(1-x^6)).

Original entry on oeis.org

1, 0, 1, 0, 3, 0, 4, 0, 7, 0, 9, 0, 14, 0, 17, 0, 24, 0, 29, 1, 38, 1, 45, 3, 57, 4, 66, 7, 81, 9, 93, 14, 111, 17, 126, 24, 148, 29, 166, 38, 192, 45, 214, 57, 244, 66, 270, 81, 305, 93, 335, 111, 375, 126, 410, 148, 455
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A027640.

Programs

  • Magma
    R:=PowerSeriesRing(Integers(), 70); Coefficients(R!( (1+x^19)/((1-x^2)*(1-x^4)^2*(1-x^6) ))); // G. C. Greubel, Aug 04 2022
    
  • Mathematica
    CoefficientList[Series[(1+x^19)/((1-x^2)(1-x^4)^2(1-x^6)),{x,0,70}],x] (* Harvey P. Dale, Oct 13 2015 *)
  • SageMath
    def A027636_list(prec):
        P. = PowerSeriesRing(ZZ, prec)
        return P( (1+x^19)/((1-x^2)*(1-x^4)^2*(1-x^6)) ).list()
    A027636_list(70) # G. C. Greubel, Aug 04 2022

Formula

G.f.: (1+x^19)/((1-x^2) * (1-x^4)^2 * (1-x^6)).