A142200 Primes congruent to 3 mod 41.
3, 167, 331, 577, 659, 823, 1069, 1151, 1889, 2053, 2381, 2791, 3037, 3119, 3529, 4021, 4349, 4513, 4759, 5087, 5333, 5743, 6317, 6481, 6563, 7219, 7547, 7793, 8039, 8941, 9187, 9433, 9679, 10007, 10253, 10499, 10663, 10909, 11483, 12713, 12959, 13451, 13697
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(14000) | p mod 41 eq 3 ]; // Vincenzo Librandi, Aug 23 2012
-
Mathematica
Select[Range[3,30000,41],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 17 2011 *) Select[Prime[Range[5000]],MemberQ[{3},Mod[#,41]]&] (* Vincenzo Librandi, Aug 23 2012 *)
-
PARI
is(n)=isprime(n) && n%41==3 \\ Charles R Greathouse IV, Jul 01 2016