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.

A045366 Primes congruent to {2, 5} mod 8.

Original entry on oeis.org

2, 5, 13, 29, 37, 53, 61, 101, 109, 149, 157, 173, 181, 197, 229, 269, 277, 293, 317, 349, 373, 389, 397, 421, 461, 509, 541, 557, 613, 653, 661, 677, 701, 709, 733, 757, 773, 797, 821, 829, 853, 877, 941, 997
Offset: 1

Views

Author

Keywords

Crossrefs

Essentially the same as A007521.

Programs

  • Magma
    [p: p in PrimesUpTo(1200) | p mod 8 in [2, 5]]; // Vincenzo Librandi, Aug 10 2012
  • Mathematica
    Select[Prime[Range[300]],MemberQ[{2,5},Mod[#,8]]&] (* Vincenzo Librandi, Aug 10 2012 *)