A101780 Primes of the form 100*n + 3.
3, 103, 503, 1103, 1303, 2003, 2203, 2503, 2803, 2903, 3203, 3803, 4003, 4603, 4703, 4903, 5003, 5303, 5503, 5903, 6203, 6703, 6803, 7103, 7603, 7703, 8803, 9103, 9203, 9403, 9803, 10103, 10303, 10903, 11003
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
- Chris K. Caldwell The first 100,008 primes.
Programs
-
Magma
[a: n in [0..250]|IsPrime(a) where a is 100*n+3]; // Vincenzo Librandi, Jul 19 2012
-
Mathematica
100*Select[Range[0, 200], PrimeQ[100# + 3] &] + 3 (* Stefan Steinerberger, Feb 28 2006 *) Select[Table[100*n+3,{n,0,700}],PrimeQ] (* Vincenzo Librandi, Jul 19 2012 *)
Extensions
More terms from Stefan Steinerberger, Feb 28 2006