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.

A215165 Primes congruent to {1, 4} mod 17.

Original entry on oeis.org

89, 103, 137, 157, 191, 239, 293, 307, 409, 443, 463, 599, 613, 647, 701, 769, 919, 953, 1021, 1109, 1123, 1259, 1279, 1327, 1361, 1381, 1429, 1483, 1531, 1619, 1667, 1721, 1789, 1823, 1871, 1973, 1993, 2027, 2129, 2143, 2333, 2347, 2381, 2503, 2551, 2687
Offset: 1

Views

Author

Vincenzo Librandi, Aug 06 2012

Keywords

Crossrefs

Programs

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