OFFSET
1,2
COMMENTS
Some of the results were computed using the PrimeFormGW (PFGW) primality-testing program. - Hugo Pfoertner, Nov 14 2019
a(12) > 60000. - Tyler Busby, Feb 12 2023
EXAMPLE
a(1) = 1 because (2^1+1)^4 - 2 = 79 is prime and is the first such prime.
MATHEMATICA
Select[Range[5000], PrimeQ[(2^# + 1)^4 - 2] &]
PROG
(PARI) is(n)=ispseudoprime((2^n+1)^4-2) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
more,nonn
AUTHOR
Jonathan Vos Post, Nov 23 2004
EXTENSIONS
Edited, corrected and extended by Ray Chandler and Hugo Pfoertner, Nov 26 2004
a(10)-a(11) from Tyler Busby, Feb 12 2023
STATUS
approved