OFFSET
3,2
COMMENTS
Column k=7 of triangle A236830. - Philippe Deléham, Feb 02 2014
LINKS
G. C. Greubel, Table of n, a(n) for n = 3..1000
FORMULA
G.f.: (x^3*C(x)^7)/(1-x*C(x)^3) where C(x) is the g.f. of A000108. - Philippe Deléham, Feb 02 2014
a(n) ~ phi^(3*n-4) / sqrt(5), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio. - Vaclav Kotesovec, Jul 19 2019
MATHEMATICA
Drop[CoefficientList[Series[(1-Sqrt[1-4*x])^7/(16*x^2*(8*x^2 -(1-Sqrt[1-4*x])^3)), {x, 0, 40}], x], 3] (* G. C. Greubel, Jul 19 2019 *)
PROG
(PARI) my(x='x+O('x^40)); Vec( (1-sqrt(1-4*x))^7/(16*x^2*(8*x^2 -(1-sqrt(1-4*x))^3)) ) \\ G. C. Greubel, Jul 19 2019
(Magma) R<x>:=PowerSeriesRing(Rationals(), 40); Coefficients(R!( (1-Sqrt(1-4*x))^7/(16*x^2*(8*x^2 -(1-Sqrt(1-4*x))^3)) )); // G. C. Greubel, Jul 19 2019
(Sage) a=((1-sqrt(1-4*x))^7/(16*x^2*(8*x^2 -(1-sqrt(1-4*x))^3)) ).series(x, 45).coefficients(x, sparse=False); a[3:40] # G. C. Greubel, Jul 19 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved