A191036 Primes p that have Jacobi symbol (p|55) = 1.
2, 7, 13, 17, 31, 43, 59, 71, 73, 83, 89, 107, 127, 167, 173, 179, 181, 191, 193, 197, 199, 227, 229, 233, 251, 263, 269, 277, 283, 293, 307, 311, 331, 337, 347, 373, 379, 389, 401, 419, 421, 449, 457, 499, 503, 509, 521, 523, 547, 557, 563, 593, 599, 607
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Magma
[p: p in PrimesUpTo(607) | JacobiSymbol(p, 55) eq 1]; // Vincenzo Librandi, Sep 10 2012
-
Mathematica
Select[Prime[Range[200]], JacobiSymbol[#,55]==1&]
-
PARI
select(p->kronecker(p,55)==1&&isprime(p),[1..1500]) \\ M. F. Hasler, Jan 15 2016
Extensions
Definition corrected (following an observation by David Broadhurst) by M. F. Hasler, Jan 15 2016
Comments