Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A101780
Primes of the form 100*n + 3.
2
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,1
LINKS
Chris K. Caldwell The first 100,008 primes.
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 *)
PROG
(Magma) [a: n in [0..250]|IsPrime(a) where a is 100*n+3]; // Vincenzo Librandi, Jul 19 2012
CROSSREFS
Sequence in context: A139908 A128070 A323036 * A197632 A280177 A241348
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Jan 26 2005
EXTENSIONS
More terms from Stefan Steinerberger, Feb 28 2006
STATUS
approved