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.

A191027 Primes that are nonzero squares mod 37.

Original entry on oeis.org

3, 7, 11, 41, 47, 53, 67, 71, 73, 83, 101, 107, 127, 137, 139, 149, 151, 157, 173, 181, 197, 211, 223, 229, 233, 263, 269, 271, 293, 307, 317, 337, 349, 359, 367, 373, 379, 397, 419, 433, 443, 491, 509, 521, 571, 593, 599, 601, 613, 617, 619, 641, 659, 673
Offset: 1

Views

Author

T. D. Noe, May 24 2011

Keywords

Comments

Primes p such that the Legendre symbol (p/37) = +1. - N. J. A. Sloane, May 25 2013

Crossrefs

Except for excluding 37, identical to A038913.

Programs

  • Magma
    [p: p in PrimesUpTo(643) | JacobiSymbol(p, 37) eq 1]; // Vincenzo Librandi, Sep 10 2012
  • Mathematica
    Select[Prime[Range[200]], JacobiSymbol[#,37]==1&]