OFFSET
1,1
COMMENTS
Prime solutions to the classical "Monkey and Coconut Problem." Primes of the form n^(n+1)-n+1. A014293(n) is prime for n = 2, 3, 4, 9, 14, 30, 62, 75, 156, ..., .
The next term has 113 digits.
FORMULA
EXAMPLE
MATHEMATICA
Select[#^(# + 1) - # + 1 & /@ Range@ 75, PrimeQ]
PROG
(Magma) [ a: n in [0..250] | IsPrime(a) where a is (n^(n+1)-n+1)] // Vincenzo Librandi, Jan 30 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Jonathan Vos Post, Dec 07 2010
STATUS
approved