|
| |
|
|
A058912
|
|
Numbers n such that n^n + n - 1 is prime.
|
|
2
| | |
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Except for the first term all terms are of the form 3k or 3k+1. There is no further term up to 2300. - Farideh Firoozbakht (mymontain(AT)yahoo.com), Oct 18 2006
|
|
|
EXAMPLE
| a(2)=3 because 3^3+(3-1)=29
|
|
|
MATHEMATICA
| Do[ If[ PrimeQ[ n^n + n - 1], Print[n]], {n, 1, 750} ]
|
|
|
CROSSREFS
| Cf. (n^n+1+1) A058911.
Cf. A058911.
Sequence in context: A195416 A140555 A196446 * A040145 A142955 A088790
Adjacent sequences: A058909 A058910 A058911 * A058913 A058914 A058915
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Felice Russo (frusso(AT)micron.com), Jan 10 2001
|
|
|
EXTENSIONS
| One more term from Farideh Firoozbakht (mymontain(AT)yahoo.com), Oct 18 2006
|
| |
|
|