OFFSET
1,1
COMMENTS
Conjecture: If p=2*n^2+6*n+1 is prime then 2^p-1 is not prime.
Tested for all p < 24036583 = A000043(41). - Joerg Arndt, Oct 06 2012
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
For n=3, p=37 and 2^37-1 = 223 * 616318177.
MATHEMATICA
Select[Range[500], PrimeQ[2 #^2 + 6 # + 1] &] (* Vincenzo Librandi, Oct 08 2012 *)
PROG
(Magma) [n: n in [1..1000]| IsPrime(2*n^2 + 6*n + 1)];
(PARI) is(n)=isprime(2*n^2+6*n+1) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Apr 20 2010
STATUS
approved