OFFSET
1,1
COMMENTS
Infinite under the Bateman-Horn-Stemmler conjecture. - Charles R Greathouse IV, Jul 13 2012
Old name was "Primes of the form 8*n^3 + 7".
LINKS
Vincenzo Librandi and Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Table[n^3 + 7, {n, 0, 298, 2}], PrimeQ]
PROG
(Magma) [a: n in [0..300] | IsPrime(a) where a is 8*n^3+7];
(PARI) select(isprime, vector(1000, n, 8*(n-1)^3+7)) \\ Charles R Greathouse IV, Jul 13 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 29 2011
EXTENSIONS
Name simplified by Alex Ratushnyak, Apr 06 2013
STATUS
approved