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.

A142890 Primes congruent to 2 mod 63.

Original entry on oeis.org

2, 191, 317, 443, 569, 821, 947, 1451, 2081, 2207, 2333, 2459, 2711, 2837, 2963, 3089, 3467, 3593, 3719, 4349, 5231, 5483, 5861, 5987, 6113, 6491, 6869, 7121, 7247, 7499, 7877, 9011, 9137, 9767, 10271, 11027, 11279, 11657, 11783, 11909, 12161, 12413, 12539
Offset: 1

Views

Author

N. J. A. Sloane, Jul 11 2008

Keywords

Crossrefs

Cf. A000040.

Programs

  • Magma
    [p: p in PrimesUpTo(13000) | p mod 63 eq 2 ] ; // Vincenzo Librandi, Sep 06 2012
  • Mathematica
    Select[Prime[Range[1900]], MemberQ[{2}, Mod[#, 63]] &] (* Vincenzo Librandi, Sep 06 2012 *)