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

A038930
Primes p such that 51 is not a square mod p.
1
2, 11, 19, 23, 37, 43, 53, 61, 67, 71, 73, 89, 97, 101, 103, 107, 109, 127, 131, 137, 149, 151, 167, 181, 193, 223, 227, 241, 257, 271, 277, 281, 293, 307, 311, 313, 331, 337, 347, 353, 389, 397, 419, 431, 461
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime@Range[120], JacobiSymbol[51, #] == -1 &] (* Vincenzo Librandi, Sep 09 2012 *)
PROG
(PARI) select(n->!issquare(Mod(51, n)), primes(100)) \\ Charles R Greathouse IV, Sep 09 2012
CROSSREFS
Sequence in context: A163058 A161504 A079062 * A019375 A078784 A117196
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset changed from 0 to 1 by Vincenzo Librandi, Sep 09 2012
STATUS
approved