A073379 Ninth convolution of A001045(n+1) (generalized (1,2)-Fibonacci), n>=0, with itself.
1, 10, 75, 440, 2255, 10362, 43945, 174460, 656370, 2359500, 8158722, 27275040, 88524930, 279892380, 864508590, 2614740216, 7759693095, 22634343270, 64990287285, 183929970840, 513661549401, 1416970676550
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (10,-25,-60,330,12,-1770,960,5835,-4070,-13597, 8140,23340,-7680,-28320,-384,21120,7680,-6400,-5120,-1024).
Programs
-
Magma
R
:=PowerSeriesRing(Integers(), 40); Coefficients(R!( 1/((1+x)*(1-2*x))^10 )); // G. C. Greubel, Oct 01 2022 -
Mathematica
CoefficientList[Series[1/((1+x)*(1-2*x))^10, {x,0,40}], x] (* G. C. Greubel, Oct 01 2022 *)
-
SageMath
def A073379_list(prec): P.
= PowerSeriesRing(ZZ, prec) return P( 1/((1+x)*(1-2*x))^10 ).list() A073379_list(40) # G. C. Greubel, Oct 01 2022
Comments