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.

Showing 1-1 of 1 results.

A010376 Squares mod 13.

Original entry on oeis.org

0, 1, 3, 4, 9, 10, 12
Offset: 1

Views

Author

Keywords

Crossrefs

Row 13 of A096008.
Cf. A028726.

Programs

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