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.

A045429 Primes congruent to {1, 3} mod 5.

Original entry on oeis.org

3, 11, 13, 23, 31, 41, 43, 53, 61, 71, 73, 83, 101, 103, 113, 131, 151, 163, 173, 181, 191, 193, 211, 223, 233, 241, 251, 263, 271, 281, 283, 293, 311, 313, 331, 353, 373, 383, 401, 421, 431, 433, 443, 461, 463, 491, 503, 521, 523, 541, 563, 571, 593, 601, 613, 631, 641
Offset: 1

Views

Author

Keywords

Comments

A039703(A049084(a(n))) = odd; complement of A045356. - Reinhard Zumkeller, Feb 25 2008

Crossrefs

Programs

  • Magma
    [ p: p in PrimesUpTo(600) | p mod 5 in {1,3} ]; // Vincenzo Librandi, Aug 13 2012
  • Mathematica
    Select[Prime[Range[200]], MemberQ[{1, 3}, Mod[#, 5]] &] (* Vincenzo Librandi, Aug 13 2012 *)
    Select[Prime[Range[200]], OddQ[Mod[#, 5]] &] (* Zak Seidov, Aug 31 2012 *)