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.

A093838 Primes of the form 36n + 1.

Original entry on oeis.org

37, 73, 109, 181, 397, 433, 541, 577, 613, 757, 829, 937, 1009, 1117, 1153, 1297, 1549, 1621, 1657, 1693, 1801, 1873, 2017, 2053, 2089, 2161, 2269, 2341, 2377, 2521, 2557, 2593, 2917, 2953, 3061, 3169, 3313, 3457, 3529, 3637, 3673, 3709, 3853, 3889, 4177
Offset: 1

Views

Author

Jun Mizuki (suzuki32(AT)sanken.osaka-u.ac.jp), May 21 2004

Keywords

Comments

Used in a primality test.

Programs

  • Magma
    [p: p in PrimesUpTo(5000) | p mod 36 eq 1]; // Vincenzo Librandi, Aug 19 2012
  • Mathematica
    Select[Prime[Range[2000]],MemberQ[{1},Mod[#,36]]&] (* Vincenzo Librandi, Aug 19 2012 *)
    Select[Range[1,4200,36],PrimeQ] (* Harvey P. Dale, Sep 11 2013 *)

Extensions

Edited by N. J. A. Sloane, Jun 17 2014 at the suggestion of Bruno Berselli.