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.

A100203 Primes of the form 37n+3.

Original entry on oeis.org

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

Views

Author

Jun Mizuki (suzuki32(AT)sanken.osaka-u.ac.jp), Dec 28 2004

Keywords

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 *)