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

A142932
Primes congruent to 15 mod 64.
1
79, 271, 463, 719, 911, 1039, 1103, 1231, 1423, 1487, 1871, 1999, 2063, 2383, 2447, 2767, 3023, 3343, 3407, 3727, 3919, 4111, 4751, 4943, 5519, 5647, 5711, 5839, 5903, 6287, 6607, 6863, 6991, 7247, 7759, 7823, 7951, 8527, 8719, 8783, 9103, 9551, 9679, 9743
OFFSET
1,1
LINKS
MATHEMATICA
lst={}; Do[p=Prime[n]; If[Mod[p, 64]==15, AppendTo[lst, p]], {n, 7!}]; lst (* Vladimir Joseph Stephan Orlovsky, Feb 27 2009 *)
Select[Prime[Range[1600]], MemberQ[{15}, Mod[#, 64]] &] (* Vincenzo Librandi, Sep 06 2012 *)
Select[Range[15, 10000, 64], PrimeQ] (* Harvey P. Dale, Mar 30 2020 *)
PROG
(Magma) [p: p in PrimesUpTo(10000) | p mod 64 eq 15 ]; // Vincenzo Librandi, Sep 06 2012
CROSSREFS
Cf. A000040.
Sequence in context: A076815 A141914 A201036 * A219505 A180455 A219478
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jul 11 2008
STATUS
approved