A177008 Primes of the form n^(n-1)+n-1.
3, 11, 67, 1000000009, 550618520345910837374536871905139185678862431
Offset: 1
Examples
p=10^9+9 is prime, so p is in the sequence.
Programs
-
Mathematica
Do[If[PrimeQ[n^(n-1)+n-1], Print[n^(n-1)+n-1]], {n,3174}]
Comments