login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A038978
Primes p such that 89 is not a square mod p.
1
3, 7, 13, 19, 23, 29, 31, 37, 41, 43, 59, 61, 83, 101, 103, 113, 127, 137, 149, 151, 163, 181, 191, 193, 197, 211, 229, 239, 241, 281, 293, 313, 337, 349, 353, 359, 379, 383, 389, 397, 419, 421, 431, 433, 439, 457
OFFSET
1,1
COMMENTS
Also, primes p that are not squares mod 89 (from the quadratic reciprocity law). - Lekraj Beedassy, Jul 13 2004
LINKS
MATHEMATICA
Select[Prime[Range[120]], JacobiSymbol[89, #]==-1 &] (* Vincenzo Librandi, Sep 10 2012 *)
PROG
(Magma) [ p: p in PrimesUpTo(457) | not IsSquare(R! 89) where R:= ResidueClassRing(p) ]; // Vincenzo Librandi, Sep 10 2012
CROSSREFS
Sequence in context: A364722 A310260 A310261 * A291283 A336377 A133387
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Offset changed from 0 to 1 by Vincenzo Librandi, Sep 10 2012
STATUS
approved