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.

A045314 Primes congruent to {2, 3, 5} (mod 7).

Original entry on oeis.org

2, 3, 5, 17, 19, 23, 31, 37, 47, 59, 61, 73, 79, 89, 101, 103, 107, 131, 149, 157, 163, 173, 191, 199, 227, 229, 233, 241, 257, 269, 271, 283, 311, 313, 317, 331, 353, 359, 367, 373, 383, 397, 401, 409, 439, 443
Offset: 1

Views

Author

Keywords

Programs

  • Magma
    [p: p in PrimesUpTo(700) | p mod 7 in [2, 3, 5]]; // Vincenzo Librandi, Aug 04 2012
  • Mathematica
    Select[Prime[Range[1000]],MemberQ[{2,3, 5},Mod[#,7]]&] (* Vincenzo Librandi, Aug 04 2012 *)