A142014 Primes congruent to 10 mod 31.
41, 103, 227, 599, 661, 971, 1033, 1777, 1901, 2087, 2273, 2459, 2521, 2707, 3079, 3203, 3389, 3637, 3761, 3823, 3947, 4133, 4567, 4691, 4877, 5683, 5807, 5869, 6427, 6551, 6737, 7109, 7481, 7853, 8039, 8101, 8287, 8597, 8783, 8969, 9341, 9403, 10271, 10333
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ p: p in PrimesUpTo(30000) | p mod 31 eq 10 ]; // Vincenzo Librandi, Apr 20 2011
-
Mathematica
Select[Range[10,20000,31],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, Apr 20 2011 *) Select[Prime[Range[1300]],Mod[#,31]==10&] (* Harvey P. Dale, May 14 2023 *)
-
PARI
is(n)=isprime(n) && n%31==10 \\ Charles R Greathouse IV, Jul 03 2016
Formula
a(n) ~ 30n log n. - Charles R Greathouse IV, Jul 03 2016