A038889 Primes p such that 17 is a square mod p.
2, 13, 17, 19, 43, 47, 53, 59, 67, 83, 89, 101, 103, 127, 137, 149, 151, 157, 179, 191, 223, 229, 239, 251, 257, 263, 271, 281, 293, 307, 331, 349, 353, 359, 373, 383, 389, 409, 421, 433, 443, 457, 461, 463, 467, 491, 509, 523, 557, 563, 569, 577, 587, 593
Offset: 1
Keywords
References
- Z. I. Borevich and I. R. Shafarevich, Number Theory.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
- N. J. A. Sloane et al., Binary Quadratic Forms and OEIS (Index to related sequences, programs, references)
- D. B. Zagier, Zetafunktionen und quadratische Körper, Springer, 1981.
Programs
-
Mathematica
Select[Prime[Range[200]],JacobiSymbol[17,#]!=-1&] (* Harvey P. Dale, Sep 20 2011 *)
-
PARI
is(n)=isprime(n)&&issquare(Mod(17,n)) \\ Charles R Greathouse IV, Mar 21 2013
Extensions
Edited by N. J. A. Sloane, Jul 28 2008 at the suggestion of R. J. Mathar
Comments