A090687 Primes of the form 6*k^2 + 1.
7, 97, 151, 487, 601, 727, 2647, 3457, 4057, 7351, 9127, 9601, 11617, 12697, 14407, 15607, 17497, 20887, 21601, 29401, 33751, 37447, 39367, 42337, 47527, 53017, 54151, 71287, 77977, 80737, 84967, 95257, 102967, 110977, 126151, 142297, 151687
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..5000
Programs
-
Magma
[a: n in [0..600] | IsPrime(a) where a is 6*n^2+1]; // Vincenzo Librandi, Dec 03 2011
-
Mathematica
Select[Table[6n^2+1,{n,0,1000}],PrimeQ] (* Vincenzo Librandi, Dec 03 2011 *)
-
PARI
mx2pmp(n) = { for(x=1,n, y = 6*x^2+1; if(isprime(y),print1(y",")) ) }
Extensions
Edited by N. J. A. Sloane at the suggestion of R. J. Mathar, Apr 14 2008
Comments