OFFSET
1,1
COMMENTS
Exponent-3 analog of what for exponent 2 is A091516 Carol primes (2^n-1)^2 - 2 = 4^n - 2^{n+1} - 1. Hence this is a type of "near-cube primes."
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10
Eric Weisstein's World of Mathematics, Near-Square Prime.
EXAMPLE
a(1) = (2^4 - 1)^3 - 2 = 3373 is prime.
a(2) = (2^5 - 1)^3 - 2 = 29789 is prime.
a(3) = (2^9 - 1)^3 - 2 = 133432829 is prime.
a(4) = (2^11 - 1)^3 - 2 = 8577357821 is prime.
MATHEMATICA
Select[(2^Range[20]-1)^3-2, PrimeQ] (* Harvey P. Dale, Oct 22 2016 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Jonathan Vos Post, May 03 2006
STATUS
approved