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.

A019323 Cyclotomic polynomials at x=5.

Original entry on oeis.org

5, 4, 6, 31, 26, 781, 21, 19531, 626, 15751, 521, 12207031, 601, 305175781, 13021, 315121, 390626, 190734863281, 15501, 4768371582031, 375601, 196890121, 8138021, 2980232238769531, 390001, 95397958987501
Offset: 0

Views

Author

Keywords

Programs

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