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

A347141
a(1) = 11; for n > 1, a(n) is the smallest prime factor of 2^a(n-1) - 1.
0
11, 23, 47, 2351, 4703
OFFSET
1,1
EXAMPLE
2^11 - 1 = 23*89, so the next term after 11 is 23.
MATHEMATICA
a[1] = 11; a[n_] := a[n] = Module[{p = 3}, While[PowerMod[2, a[n - 1], p] != 1, p = NextPrime[p]]; p]; Array[a, 5] (* Amiram Eldar, Aug 19 2021 *)
CROSSREFS
Cf. A049479.
Sequence in context: A096342 A066179 A217566 * A278869 A272628 A141093
KEYWORD
nonn,hard,more
AUTHOR
J. Lowell, Aug 19 2021
STATUS
approved