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”).

A038952
Primes p such that 69 is not a square mod p.
4
2, 7, 19, 29, 37, 41, 43, 47, 59, 61, 67, 71, 79, 97, 101, 103, 109, 131, 157, 167, 173, 179, 181, 197, 199, 229, 233, 239, 241, 257, 269, 283, 311, 313, 317, 337, 347, 353, 367, 373, 379, 421, 433, 443, 449, 457
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime@Range[120], JacobiSymbol[69, #] == - 1 &] (* Vincenzo Librandi, Sep 09 2012 *)
PROG
(PARI) select(n->!issquare(Mod(69, n)), primes(100)) \\ Charles R Greathouse IV, Sep 09 2012
CROSSREFS
Sequence in context: A100408 A259370 A103034 * A144589 A179002 A232667
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset changed from 0 to 1 by Vincenzo Librandi, Sep 09 2012
STATUS
approved