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.

A028733 Nonsquares mod 20.

Original entry on oeis.org

2, 3, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A010382.

Programs

  • Mathematica
    Complement[Range[0, 19], PowerMod[Range[20], 2, 20]] (* Alonso del Arte, Dec 20 2019 *)
  • Scala
    (0 to 19).diff((1 to 20).map(n => (n * n) % 20)) // Alonso del Arte, Dec 20 2019