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.

A215164 Primes congruent to {1, 4} mod 13.

Original entry on oeis.org

17, 43, 53, 79, 131, 157, 173, 199, 251, 277, 313, 433, 443, 521, 547, 563, 599, 641, 677, 719, 797, 823, 859, 911, 937, 953, 1031, 1093, 1109, 1171, 1187, 1213, 1223, 1249, 1291, 1301, 1327, 1447, 1483, 1499, 1613, 1733, 1759, 1811, 1847, 1873, 1889, 1951, 1993
Offset: 1

Views

Author

Vincenzo Librandi, Aug 06 2012

Keywords

Crossrefs

Programs

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