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”).

A178250
Least number x such that n^x-n-1 is prime.
1
3, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 4, 2, 3, 2, 2, 3, 5, 2, 2, 2, 3, 3, 2, 4, 2, 5, 2, 5, 2, 2, 7, 5, 3, 2, 9, 3, 2, 2, 3, 2, 31, 4, 2, 2, 2, 3, 2, 4, 2, 108, 4, 2, 2, 2, 2, 3, 3, 2, 2, 18, 7, 3, 2, 2, 2, 4, 2, 3, 2, 5, 32, 108, 5, 3, 2, 11, 4, 15, 3, 4, 19, 2, 6, 2, 2, 11, 107, 2, 42, 4, 39, 2, 2, 6, 2, 3
OFFSET
2,1
COMMENTS
Least number x such that x^n-x-1 is prime see A127599.
MATHEMATICA
a = {}; Do[k = 2; While[ ! PrimeQ[n^k - n - 1], k++ ]; AppendTo[a, k], {n, 2, 500}]; a (*Artur Jasinski*)
lnx[n_]:=Module[{x=1}, While[!PrimeQ[n^x-n-1], x++]; x]; Array[lnx, 100, 2] (* Harvey P. Dale, Jul 09 2017 *)
CROSSREFS
Sequence in context: A252503 A270003 A067438 * A174550 A119704 A104223
KEYWORD
nonn
AUTHOR
Artur Jasinski, May 24 2010
STATUS
approved