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.

A132239 Primes congruent to {17, 19} mod 30.

Original entry on oeis.org

17, 19, 47, 79, 107, 109, 137, 139, 167, 197, 199, 227, 229, 257, 317, 347, 349, 379, 409, 439, 467, 499, 557, 587, 617, 619, 647, 677, 709, 739, 769, 797, 827, 829, 857, 859, 887, 919, 947, 977, 1009, 1039, 1069, 1097, 1129, 1187
Offset: 1

Views

Author

Omar E. Pol, Aug 15 2007

Keywords

Crossrefs

Programs

  • Magma
    [ p: p in PrimesUpTo(1300) | p mod 30 in {17, 19} ]; // Vincenzo Librandi, Aug 14 2012
  • Mathematica
    Select[Prime[Range[1000]],MemberQ[{17,19},Mod[#,30]]&] (* Vincenzo Librandi, Aug 14 2012 *)