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.

A019331 Cyclotomic polynomials at x=13.

Original entry on oeis.org

13, 12, 14, 183, 170, 30941, 157, 5229043, 28562, 4829007, 26521, 149346699503, 28393, 25239592216021, 4482037, 753327121, 815730722, 720867993281778161, 4824613, 121826690864620509223, 810932305
Offset: 0

Views

Author

Keywords

Programs

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