OFFSET
1,1
COMMENTS
Old name was "Primes of the form 8n^3 + 9".
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..6200
EXAMPLE
Since 17 is prime and equal to 2^3 + 9, it is in the sequence.
Since 73 is prime and equal to 4^3 + 9, it is in the sequence.
225 is not in the sequence, because, although it is 6^3 + 9, it is divisible by 5.
MATHEMATICA
Select[Table[n^3 + 9, {n, 0, 248, 2}], PrimeQ]
PROG
(Magma) [a: n in [0..300] | IsPrime(a) where a is 8*n^3+9]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 29 2011
EXTENSIONS
Name simplified by Alex Ratushnyak, Apr 06 2013
STATUS
approved