OFFSET
1,1
COMMENTS
If the recurrence is generalized to a(n) > r*a(n - 1)*a(n - 3)/b(n - 2), then then 5/3 is the least value of r for which (a(n)) is strictly increasing.
MATHEMATICA
{a[1], a[2], a[3]} = {2, 3, 5}; r = 5/3;
a[n_] := a[n] = NextPrime[r*a[n - 1] a[n - 3]/a[n - 2]];
Table[a[n], {n, 1, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Nov 13 2024
STATUS
approved