A093838 Primes of the form 36n + 1.
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
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
- Chris, Caldwell. Prime 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.
Comments