OFFSET
0,3
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..97
FORMULA
a(n) ~ c * phi^(n*(n+1)/2), where phi = A001622 is the golden ratio and c = 5.62026823201787715079864730026619553810473701484813959397175006212578036... - Vaclav Kotesovec, Sep 18 2021
MAPLE
L:= proc(n) option remember; (<<1|1>, <1|0>>^n. <<2, -1>>)[1, 1] end:
b:= proc(x, y) option remember; `if`(x=0 and y=0, 1,
`if`(x>0, b(x-1, y)*L(y-x+1), 0)+`if`(y>x, b(x, y-1), 0))
end:
a:= n-> b(n$2):
seq(a(n), n=0..17); # Alois P. Heinz, Nov 12 2023
MATHEMATICA
nmax = 17; CoefficientList[Series[1/(1 + ContinuedFractionK[-LucasL[k] x, 1, {k, 1, nmax}]), {x, 0, nmax}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 23 2019
STATUS
approved