cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A101780 Primes of the form 100*n + 3.

Original entry on oeis.org

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

Views

Author

Parthasarathy Nambi, Jan 26 2005

Keywords

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