A100203 Primes of the form 37n+3.
3, 151, 373, 521, 743, 1039, 1187, 1409, 1483, 2297, 2371, 2593, 2741, 2963, 3037, 3259, 3407, 3851, 4073, 4517, 4591, 4813, 5479, 5701, 5849, 5923, 6367, 6737, 6959, 7477, 7699, 8069, 8291, 8513, 9623, 9697, 10067, 10141, 10289, 10733, 11177, 11251
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ a: n in [0..400] | IsPrime(a) where a is 37*n+3 ]; // Vincenzo Librandi, Jul 18 2012
-
Mathematica
Select[37 Range[0,400]+3, PrimeQ] (* Harvey P. Dale, Mar 24 2011 *)