(MAGMAMagma) [ p: p in PrimesUpTo(760) | p mod 11 in {2, 3, 5, 7} ];
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”).
(MAGMAMagma) [ p: p in PrimesUpTo(760) | p mod 11 in {2, 3, 5, 7} ];
proposed
approved
editing
proposed
Vincenzo Librandi, <a href="/A167134/b167134.txt">Table of n, a(n) for n = 1..1000</a>
Select[Prime[Range[600]], MemberQ[{2, 3, 5, 7}, Mod[#, 11]]&] (* Vincenzo Librandi, Aug 05 2012 *)
nonn,easy
approved
editing
_Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), _, Oct 28 2009
Primes congruent to {2, 3, 5, 7} mod 11.
2, 3, 5, 7, 13, 29, 47, 71, 73, 79, 101, 113, 137, 139, 157, 167, 179, 181, 211, 223, 227, 233, 269, 271, 277, 293, 311, 313, 337, 359, 379, 401, 409, 421, 431, 443, 467, 487, 491, 509, 541, 557, 563, 577, 599, 601, 607, 619, 641, 643, 673, 709, 733, 739, 751
1,1
Primes p such that p mod 11 is prime.
Primes of the form 11*n+r where n >= 0 and r is in {2, 3, 5, 7}.
(MAGMA) [ p: p in PrimesUpTo(760) | p mod 11 in {2, 3, 5, 7} ];
[ p: p in PrimesUpTo(760) | exists(t){ n: n in [0..p div 11] | exists(u){ r: r in {2, 3, 5, 7} | p eq (11*n+r) } } ];
nonn
Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), Oct 28 2009
approved