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.

A215392 Primes congruent to {1, 2} mod 17.

Original entry on oeis.org

2, 19, 53, 103, 137, 223, 239, 257, 307, 359, 409, 443, 461, 563, 613, 631, 647, 733, 919, 937, 953, 971, 1021, 1039, 1123, 1259, 1277, 1327, 1361, 1429, 1447, 1481, 1531, 1549, 1583, 1667, 1753, 1787, 1871, 1889, 1973, 2143, 2161, 2297, 2347, 2381, 2399, 2467
Offset: 1

Views

Author

Vincenzo Librandi, Aug 10 2012

Keywords

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(2500) | p mod 17 in [1, 2]];
  • Mathematica
    Select[Prime[Range[300]],MemberQ[{1,2},Mod[#,17]]&]