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.

A019324 Cyclotomic polynomials at x=6.

Original entry on oeis.org

6, 5, 7, 43, 37, 1555, 31, 55987, 1297, 46873, 1111, 72559411, 1261, 2612138803, 39991, 1406371, 1679617, 3385331888947, 46441, 121871948002099, 1634221, 1822428931, 51828151, 157946044610720563, 1678321
Offset: 0

Views

Author

Keywords

Programs

  • Maple
    with(numtheory,cyclotomic); f := n->subs(x=6,cyclotomic(n,x)); seq(f(i),i=0..64);
  • Mathematica
    Join[{6}, Cyclotomic[Range[50], 6]] (* Paolo Xausa, Feb 26 2024 *)