login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A038962
Primes p such that 77 is not a square mod p.
1
2, 3, 5, 29, 31, 43, 47, 59, 79, 89, 97, 103, 107, 109, 127, 149, 151, 157, 181, 193, 197, 199, 211, 223, 229, 233, 239, 251, 257, 263, 269, 277, 281, 311, 313, 337, 347, 353, 359, 367, 373, 383, 397, 419, 431
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime@Range[120], JacobiSymbol[77, #] == - 1 &] (* Vincenzo Librandi, Sep 09 2012 *)
PROG
(Magma) [2] cat [ p: p in PrimesUpTo(431) | not IsSquare(R! 77) where R:= ResidueClassRing(p) ]; // Vincenzo Librandi, Sep 10 2012
CROSSREFS
Sequence in context: A084598 A215307 A215103 * A309179 A019400 A354084
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Offset changed from 0 to 1 by Vincenzo Librandi, Sep 09 2012
STATUS
approved