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

A142929
Primes congruent to 9 mod 64.
1
73, 137, 457, 521, 1033, 1097, 1289, 1481, 1609, 1801, 1993, 2377, 2441, 2633, 2953, 3209, 3529, 3593, 4297, 4937, 5449, 5641, 5897, 6089, 6217, 6473, 6793, 6857, 7177, 7369, 7433, 7561, 7753, 7817, 8009, 8329, 8521, 8713, 8969, 9161, 9929, 10313, 10889
OFFSET
1,1
LINKS
MATHEMATICA
lst={}; Do[p=Prime[n]; If[Mod[p, 64]==9, AppendTo[lst, p]], {n, 7!}]; lst (* Vladimir Joseph Stephan Orlovsky, Feb 27 2009 *)
Select[Prime[Range[1700]], MemberQ[{9}, Mod[#, 64]] &] (* Vincenzo Librandi, Sep 06 2012 *)
Select[Range[9, 11000, 64], PrimeQ] (* Harvey P. Dale, Apr 15 2020 *)
PROG
(Magma) [p: p in PrimesUpTo(11000) | p mod 64 eq 9 ]; // Vincenzo Librandi, Sep 06 2012
CROSSREFS
Cf. A000040.
Sequence in context: A215963 A141991 A140742 * A027898 A064668 A196655
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jul 11 2008
STATUS
approved