login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A191046
Primes p that have Kronecker symbol (p|74) = 1.
4
5, 7, 13, 19, 29, 41, 43, 47, 59, 61, 71, 73, 109, 127, 131, 137, 151, 163, 179, 223, 227, 233, 251, 263, 271, 277, 283, 331, 337, 347, 359, 367, 389, 421, 433, 461, 467, 499, 521, 523, 541, 547, 557, 563, 587, 593, 599, 601, 617, 641, 643, 653, 661, 673
OFFSET
1,1
COMMENTS
Originally incorrectly named "primes which are squares mod 74", which is sequence A038913. - M. F. Hasler, Jan 15 2016
LINKS
MATHEMATICA
Select[Prime[Range[200]], JacobiSymbol[#, 74]==1&]
PROG
(Magma) [p: p in PrimesUpTo(673) | KroneckerSymbol(p, 74) eq 1]; // Vincenzo Librandi, Sep 11 2012
(PARI) select(p->kronecker(p, 74)==1&&isprime(p), [1..1000]) \\ This is to provide a generic characteristic function ("is_A191046") as 1st arg of select(), there are other ways to produce the sequence more efficiently. - M. F. Hasler, Jan 15 2016
KEYWORD
nonn,easy
AUTHOR
T. D. Noe, May 25 2011
EXTENSIONS
Definition corrected (following an observation by David Broadhurst) by M. F. Hasler, Jan 15 2016
STATUS
approved