OFFSET
0,3
COMMENTS
See A350902 for details.
LINKS
Amiram Eldar, Table of n, a(n) for n = 0..60
Richard André-Jeannin, Sequences of Integers Satisfying Recurrence Relations, The Fibonacci Quarterly, Vol. 29, No. 3 (1991), pp. 205-208.
EXAMPLE
The sequence of fractions begins with 0, 1, 10, 84, 8225/3, 999146/5, 161691205/4, 4081394133187/195, 801267937794945/28, 451272063930179690869/4420, ...
MATHEMATICA
With[{F = Fibonacci, L = LucasL}, u[0] = 0; u[1] = 1; u[n_] := u[n] = (5*F[n]*F[n - 1]*F[2*n - 1]*u[n - 1] + F[n - 1]*L[n]*u[n - 2])/(L[n - 1]*F[n]); Numerator @ Array[u, 15, 0]]
CROSSREFS
KEYWORD
nonn,frac,easy
AUTHOR
Amiram Eldar, Jan 21 2022
STATUS
approved