OFFSET
1,1
COMMENTS
Except for the first term all terms are odd.
Numbers n such that n^n+7 is prime gives the (as yet) too-short sequence 2,4,6,32,...
If it exists, a(9) > 25000. - Robert Price, Apr 25 2019
EXAMPLE
51 is in the sequence because 51^51-2 is prime. 1071^1071-2 is a probable prime.
MATHEMATICA
Do[If[PrimeQ[n^n-2], Print[n]], {n, 1111}]
Select[Range[1111], PrimeQ[#^#-2]&] (* Harvey P. Dale, Dec 08 2024 *)
PROG
(PARI) is(n)=ispseudoprime(n^n-2) \\ Charles R Greathouse IV, Feb 20 2017
CROSSREFS
KEYWORD
more,nonn
AUTHOR
Farideh Firoozbakht, Nov 19 2004
STATUS
approved