A142199 Primes congruent to 2 mod 41.
2, 43, 617, 863, 1109, 1601, 1847, 2011, 2339, 2503, 2749, 3323, 3733, 4799, 5209, 5701, 5783, 6029, 6521, 7013, 7177, 7669, 8161, 8243, 9227, 9391, 9473, 9719, 9883, 10211, 10457, 10867, 10949, 11113, 11933, 12097, 12343, 12589, 12671, 12917, 13163, 13327
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 2 ]; // Vincenzo Librandi, Aug 23 2012
-
Mathematica
Select[Range[2,30000,41],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 17 2011 *) Select[Prime[Range[5000]],MemberQ[{2},Mod[#,41]]&] (* Vincenzo Librandi, Aug 23 2012 *)
-
PARI
is(n)=isprime(n) && n%41==2 \\ Charles R Greathouse IV, Jul 01 2016