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.

A045435 Primes congruent to {3, 4} mod 5.

Original entry on oeis.org

3, 13, 19, 23, 29, 43, 53, 59, 73, 79, 83, 89, 103, 109, 113, 139, 149, 163, 173, 179, 193, 199, 223, 229, 233, 239, 263, 269, 283, 293, 313, 349, 353, 359, 373, 379, 383, 389, 409, 419, 433, 439, 443, 449, 463
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A000040.

Programs

  • Magma
    [ p: p in PrimesUpTo(600) | p mod 5 in {3,4} ]; // Vincenzo Librandi, Aug 13 2012
  • Mathematica
    Select[Prime[Range[100]],MemberQ[{3,4},Mod[#,5]]&] (* Harvey P. Dale, Mar 04 2011 *)