OFFSET
1,1
COMMENTS
For rate of growth, see the Myers et al. link. - N. J. A. Sloane, Apr 30 2020
LINKS
N. J. A. Sloane, Table of n, a(n) for n = 1..10000.
J. S. Myers, R. Schroeppel, S. R. Shannon, N. J. A. Sloane, and P. Zimmermann, Three Cousins of Recaman's Sequence, arXiv:2004:14000 [math.NT], April 2020.
MATHEMATICA
a[n_] := Module[{k, p = n}, For[k = 1, True, k++, p *= (n+k); If[Divisible[ p, n+k+1], Return[FactorInteger[n+k+1][[-1, 1]]]]]];
Array[a, 1000] (* Jean-François Alcover, Aug 17 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Apr 12 2020
STATUS
approved