OFFSET
1,4
COMMENTS
A variation on A214551 with the second and third terms being added and divided by the greatest common divisor of the pair of numbers.
LINKS
Reed Kelly, Table of n, a(n) for n = 1..1003
EXAMPLE
a(6) = (a(4)+a(3))/gcd(a(4),a(3)) = (2+1)/1 = 3.
a(19) = (a(17)+a(16))/gcd(a(17),a(16)) = (2+16)/2 = 9.
MATHEMATICA
DivGCDxy[n_, x_, y_, init_] := Module[{t, a, i}, t = init;
Do[AppendTo[t, (t[[-x]] + t[[-y]])/GCD[t[[-x]], t[[-y]]]], {n}];
t]; DivGCDxy[100, 2, 3, {1, 1, 1}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Reed Kelly, Jul 24 2012
EXTENSIONS
NAME adapted to offset and b-file. - R. J. Mathar, Jun 19 2021
STATUS
approved