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.

A011750 Expansion of (1 + x^2)/(1 + x + x^2 + x^3 + x^5) mod 2.

Original entry on oeis.org

1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0
Offset: 0

Views

Author

Keywords

Programs

  • Maple
    series((1+x^2)/(1+x+x^2+x^3+x^5),x,100) mod 2;
  • Mathematica
    Mod[CoefficientList[Series[(1+x^2)/(1+x+x^2+x^3+x^5) ,{x,0,80}],x],2] (* Harvey P. Dale, May 26 2025 *)