OFFSET
1,1
COMMENTS
As (a(n)) is not monotonic, a natural question is this: if the recurrence is changed to "least prime such that b(n) > r*b(n - 1)*b(n - 3)/b(n - 2)", then what is the least r such that (b(n)) is strictly increasing? See A377544.
MATHEMATICA
{a[1], a[2], a[3]} = {2, 3, 5}; r = 1;
a[n_] := a[n] = NextPrime[r*a[n - 1] a[n - 3]/a[n - 2]];
Table[a[n], {n, 1, 100}]
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Clark Kimberling, Nov 13 2024
STATUS
approved