A073378 Eighth convolution of A001045(n+1) (generalized (1,2)-Fibonacci), n>=0, with itself.
1, 9, 63, 345, 1665, 7227, 29073, 109791, 394020, 1354210, 4486482, 14397318, 44932446, 136817370, 407566350, 1190446866, 3415935699, 9645169743, 26836557825, 73670997015, 199751003991, 535449185469
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (9,-18,-60,234,126,-1176,36,3519,-479,-7038,144, 9408,2016,-7488,-3840,2304,2304,512).
Programs
-
Magma
R
:=PowerSeriesRing(Integers(), 40); Coefficients(R!( 1/((1+x)*(1-2*x))^9 )); // G. C. Greubel, Oct 01 2022 -
Mathematica
CoefficientList[Series[1/((1+x)*(1-2*x))^9, {x,0,40}], x] (* G. C. Greubel, Oct 01 2022 *)
-
SageMath
def A073378_list(prec): P.
= PowerSeriesRing(ZZ, prec) return P( 1/((1+x)*(1-2*x))^9 ).list() A073378_list(40) # G. C. Greubel, Oct 01 2022
Comments