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-2 of 2 results.

A010391 Squares mod 29.

Original entry on oeis.org

0, 1, 4, 5, 6, 7, 9, 13, 16, 20, 22, 23, 24, 25, 28
Offset: 1

Views

Author

Keywords

Comments

A070451 sorted, duplicates removed. - R. J. Mathar, Jan 12 2024

Crossrefs

Programs

A028771 Nonsquares mod 58.

Original entry on oeis.org

2, 3, 8, 10, 11, 12, 14, 15, 17, 18, 19, 21, 26, 27, 31, 32, 37, 39, 40, 41, 43, 44, 46, 47, 48, 50, 55, 56
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A010419, A028742 (subsequence).

Programs

  • Mathematica
    Complement[Range[0, 57], PowerMod[Range[58], 2, 58]] (* Alonso del Arte, Nov 29 2019 *)
  • Scala
    val squaresMod58 = (1 to 58).map(n => n * n).map(_ % 58)
    (0 to 57).diff(squaresMod58) // Alonso del Arte, Nov 29 2019

Extensions

Incorrect term 29 removed by Alonso del Arte, Nov 29 2019
Showing 1-2 of 2 results.