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.

A019329 Cyclotomic polynomials at x=11.

Original entry on oeis.org

11, 10, 12, 133, 122, 16105, 111, 1948717, 14642, 1772893, 13421, 28531167061, 14521, 3452271214393, 1623931, 195019441, 214358882, 50544702849929377, 1770231, 6115909044841454629, 212601841
Offset: 0

Views

Author

Keywords

Programs

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