OFFSET
1,2
COMMENTS
n is a lower bound on a(n), furthermore n+3 is a lower bound if n > 2. This can easily be proved by induction. It appears that both the average value and the upper bound grow either linearly or slightly faster than linearly.
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000
EXAMPLE
a(4) = a(3)/gcd(a(3),4) + 4 + 1 = 8/gcd(8,4) + 5 = 8/4 + 5 = 2 + 5 = 7.
MATHEMATICA
a[1] = 1; a[n_] := a[n] = a[n-1]/GCD[a[n - 1], n] + n + 1; Array[a, 60] (* Amiram Eldar, Aug 14 2019 *)
PROG
(Magma) [n le 1 select 1 else Self(n-1)/Gcd(Floor(Self(n-1)), n) + n + 1 : n in [1..60]]; // Marius A. Burtea, Aug 11 2019
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Dennis Reichard, Aug 11 2019
STATUS
approved