login
Primes congruent to {2, 3, 5, 7, 11} mod 19.
1

%I #5 Sep 08 2022 08:46:03

%S 2,3,5,7,11,41,43,59,79,83,97,157,163,173,193,197,211,233,239,269,271,

%T 277,307,311,347,349,353,383,401,421,439,461,463,467,499,577,613,619,

%U 653,691,727,733,743,809,839,857,877,881,919,953,971,991

%N Primes congruent to {2, 3, 5, 7, 11} mod 19.

%H Vincenzo Librandi, <a href="/A215162/b215162.txt">Table of n, a(n) for n = 1..1000</a>

%t Select[Prime[Range[400]],MemberQ[{2,3, 5, 7, 11},Mod[#,19]]&]

%o (Magma) [ p: p in PrimesUpTo(1000) | p mod 19 in {2, 3, 5, 7, 11} ];

%Y Cf. A167119, A167135.

%K nonn,easy

%O 1,1

%A _Vincenzo Librandi_, Aug 05 2012