A191029 Primes p with Jacobi symbol (p|39) = 1.
2, 5, 11, 41, 43, 47, 59, 61, 71, 79, 83, 89, 103, 127, 137, 139, 149, 157, 167, 181, 197, 199, 211, 227, 239, 277, 281, 283, 293, 313, 317, 337, 353, 359, 367, 373, 383, 401, 431, 433, 439, 449, 461, 479, 509, 523, 547, 557, 571, 587, 593, 601, 607, 617
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(617) | JacobiSymbol(p, 39) eq 1]; // Vincenzo Librandi, Sep 10 2012
-
Mathematica
Select[Prime[Range[200]], JacobiSymbol[#,39]==1&]
-
PARI
select(p->kronecker(p,39)==1&&isprime(p),[1..1000]) \\ M. F. Hasler, Jan 15 2016
Extensions
Definition corrected (following an observation by David Broadhurst) by M. F. Hasler, Jan 15 2016
Comments