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.

A010379 Squares mod 17.

Original entry on oeis.org

0, 1, 2, 4, 8, 9, 13, 15, 16
Offset: 1

Views

Author

Keywords

Crossrefs

Row 17 of A096008.

Programs

  • Mathematica
    Union[PowerMod[Range[17], 2, 17]] (* Alonso del Arte, Dec 17 2019 *)
  • Sage
    [quadratic_residues(17)] # Zerinvary Lajos, May 24 2009
    
  • Scala
    (1 to 17).map(n => (n * n) % 17).toSet.toSeq.sorted // Alonso del Arte, Dec 17 2019