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.

A020509 Cyclotomic polynomials at x=-10.

Original entry on oeis.org

-10, -11, -9, 91, 101, 9091, 111, 909091, 10001, 999001, 11111, 9090909091, 9901, 909090909091, 1111111, 109889011, 100000001, 9090909090909091, 1001001, 909090909090909091, 99009901, 1098900989011, 11111111111
Offset: 0

Views

Author

Keywords

Programs

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