A141910 Primes congruent to 6 mod 23.
29, 167, 397, 443, 673, 719, 811, 857, 1087, 1409, 1777, 1823, 2053, 2099, 2237, 2467, 2789, 2927, 3019, 3203, 3433, 3571, 3617, 3709, 3847, 4261, 4583, 4721, 4813, 4951, 5227, 5273, 5503, 5641, 5779, 6101, 6469, 6607, 6653, 6791, 6883, 7159, 7297, 7481
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(8000) | p mod 23 eq 6 ]; // Vincenzo Librandi, Aug 16 2012
-
Mathematica
Select[Range[6,10000,23],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, Apr 05 2011 *) Select[Prime[Range[1000]],Mod[#,23]==6&] (* Harvey P. Dale, Jun 20 2021 *)
-
PARI
is(n)=isprime(n) && n%23==6 \\ Charles R Greathouse IV, Jul 03 2016
Formula
a(n) ~ 22n log n. - Charles R Greathouse IV, Jul 03 2016