A073397 Eighth convolution of A002605(n) (generalized (2,2)-Fibonacci), n>=0, with itself.
1, 18, 198, 1680, 12060, 76824, 446952, 2420352, 12363120, 60151520, 280833696, 1265442048, 5528697408, 23507763840, 97575960960, 396398370816, 1579498956288, 6184543546368, 23833455191040, 90522348871680, 339263015528448, 1255995653197824, 4597442198728704
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (18,-126,384,-144,-2016,3360,4608,-12384,-8512, 24768,18432,-26880,-32256,4608,24576,16128,4608,512).
Programs
-
Magma
R
:=PowerSeriesRing(Integers(), 30); Coefficients(R!( 1/(1-2*x-2*x^2)^9 )); // G. C. Greubel, Oct 06 2022 -
Mathematica
CoefficientList[Series[1/(1-2*x-2*x^2)^9, {x,0,30}], x] (* G. C. Greubel, Oct 06 2022 *)
-
SageMath
def A073397_list(prec): P.
= PowerSeriesRing(ZZ, prec) return P( 1/(1-2*x-2*x^2)^9 ).list() A073397_list(30) # G. C. Greubel, Oct 06 2022
Comments