OFFSET
2,1
COMMENTS
As mentioned by Dubner, when n is a power (greater than 1) of a prime, then (n^k-1)/(n-1) will usually be composite for all k, which is the case for n = 9, 25, 32 and 49. - T. D. Noe, Jan 23 2004
Here, a(n) is the smallest prime of the form (n^k-1)/(n-1) with k >= 2 while in A285642 it is the smallest prime with k > 2. Differences occur when (n^2-1)/(n-1) = n+1 is prime, and therefore, when n = prime(m) - 1 is in A006093 (see formula). - Bernard Schott, Mar 16 2023
LINKS
H. Dubner, Generalized repunit primes, Math. Comp., 61 (1993), 927-930.
FORMULA
a(A006093(n)) = prime(n) for n >=2. - Bernard Schott, Mar 16 2023
EXAMPLE
a(8) = 73 = (8^3-1)/(8-1).
MATHEMATICA
Table[SelectFirst[(n^# - 1)/(n - 1) & /@ Range[10^3], PrimeQ] /. k_ /; MissingQ@ k -> 0, {n, 2, 34}] (* Michael De Vlieger, Apr 24 2017, Version 10.2 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), Jun 15 2003
EXTENSIONS
More terms from T. D. Noe, Jan 23 2004
STATUS
approved