login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A182383
Primes of the form n^n - n + 1.
0
2, 3, 3121, 302875106592241
OFFSET
1,1
COMMENTS
The next term has 340 digits. - T. D. Noe, Apr 27 2012
EXAMPLE
a(2) = 5^5 - 5 + 1 = 3125 - 4 = 3121.
MATHEMATICA
Unprotect[Power]; Power[0, 0] = 1; Protect[Power]; Select[Table[n^n - n + 1, {n, 0, 100}], PrimeQ] (* T. D. Noe, Apr 27 2012 *)
CROSSREFS
Sequence in context: A125612 A185156 A235935 * A257552 A038104 A290972
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Apr 27 2012
STATUS
approved