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

A045403
Primes congruent to {1, 3, 5} mod 8.
2
3, 5, 11, 13, 17, 19, 29, 37, 41, 43, 53, 59, 61, 67, 73, 83, 89, 97, 101, 107, 109, 113, 131, 137, 139, 149, 157, 163, 173, 179, 181, 193, 197, 211, 227, 229, 233, 241, 251, 257, 269, 277, 281, 283, 293, 307, 313
OFFSET
1,1
COMMENTS
Essentially the same of A042998 (apart from 2).
LINKS
Ray Chandler, Table of n, a(n) for n = 1..10000 (first 1000 terms from Vincenzo Librandi)
MATHEMATICA
Select[Prime[Range[300]], MemberQ[{1, 3, 5}, Mod[#, 8]]&] (* Vincenzo Librandi, Aug 12 2012 *)
PROG
(Magma) [ p: p in PrimesUpTo(400) | p mod 8 in {1, 3, 5} ]; // Vincenzo Librandi, Aug 12 2012
CROSSREFS
Cf. A000040.
Sequence in context: A045402 A059634 A059315 * A059641 A014662 A059349
KEYWORD
nonn,easy
STATUS
approved