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.

A132237 Primes congruent to {7, 23} mod 30.

Original entry on oeis.org

7, 23, 37, 53, 67, 83, 97, 113, 127, 157, 173, 233, 263, 277, 293, 307, 337, 353, 367, 383, 397, 443, 457, 487, 503, 547, 563, 577, 593, 607, 653, 683, 727, 743, 757, 773, 787, 863, 877, 907, 937, 953, 967, 983, 997, 1013, 1087, 1103
Offset: 1

Views

Author

Omar E. Pol, Aug 15 2007

Keywords

Comments

Up to 4913, there are more primes of this form than composites. See also A132231 and A227869 (congruent to 7 only). - M. F. Hasler, Nov 02 2013

Crossrefs

Programs

  • Magma
    [ p: p in PrimesUpTo(1300) | p mod 30 in [7, 23] ]; // Vincenzo Librandi, Aug 14 2012
    
  • Mathematica
    Select[Prime[Range[1000]],MemberQ[{7,23},Mod[#,30]]&] (* Vincenzo Librandi, Aug 14 2012 *)
  • PARI
    is_A132237(n)=setsearch([7,23],n%30)&&isprime(n) \\ - M. F. Hasler, Nov 02 2013