A142066 Primes congruent to 29 mod 33.
29, 227, 293, 359, 491, 557, 821, 887, 953, 1019, 1151, 1217, 1283, 1481, 1613, 1811, 1877, 2141, 2207, 2273, 2339, 2801, 2999, 3329, 3461, 3527, 3593, 3659, 3923, 3989, 4253, 4451, 4517, 4583, 4649, 5309, 5441, 5507, 5573, 5639, 5903, 6101, 6299, 6563
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(8000) | p mod 33 eq 29 ]; // Vincenzo Librandi, Aug 18 2012
-
Mathematica
Select[Range[29, 20000, 33], PrimeQ] (* Vladimir Joseph Stephan Orlovsky, Jun 24 2011 *) Select[Prime[Range[3000]],MemberQ[{29},Mod[#,33]]&] (* Vincenzo Librandi, Aug 18 2012 *)
-
PARI
is(n)=isprime(n) && n%33==29 \\ Charles R Greathouse IV, Jul 03 2016
Formula
a(n) ~ 20n log n. - Charles R Greathouse IV, Jul 03 2016