%I #23 Sep 08 2022 08:45:12
%S 0,0,1,-1,7,-13,55,-133,463,-1261,4039,-11605,35839,-105469,320503,
%T -953317,2876335,-8596237,25854247,-77431669,232557151,-697147165,
%U 2092490071,-6275373061,18830313487,-56482551853,169464432775,-508359743893,1525146340543
%N Expansion of x^2/((1-2*x)*(1+3*x)).
%C Inverse binomial transform of A091002.
%H G. C. Greubel, <a href="/A091005/b091005.txt">Table of n, a(n) for n = 0..1000</a>
%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (-1,6).
%F 2^n = A091003(n) + 3*A091004(n) + 6*a(n).
%F a(n) = (3*2^n + 2*(-3)^n - 5*0^n)/30.
%F E.g.f.: (3*exp(2*x) + 2*exp(-3*x) - 5)/30. - _G. C. Greubel_, Feb 01 2019
%t a[n_]:=(MatrixPower[{{1,4},{1,-2}},n].{{1},{1}})[[2,1]]; Table[a[n],{n,0,40}] (* _Vladimir Joseph Stephan Orlovsky_, Feb 19 2010 *)
%t Join[{0, 0}, LinearRecurrence[{-1, 6}, {1, -1}, 30]] (* _G. C. Greubel_, Feb 01 2019 *)
%t CoefficientList[Series[x^2/((1-2x)(1+3x)),{x,0,30}],x] (* _Harvey P. Dale_, Apr 30 2022 *)
%o (PARI) vector(30, n, n--; (3*2^n + 2*(-3)^n - 5*0^n)/30) \\ _G. C. Greubel_, Feb 01 2019
%o (Magma) [0] cat [(3*2^n + 2*(-3)^n)/30: n in [1..30]]; // _G. C. Greubel_, Feb 01 2019
%o (Sage) [0] + [(3*2^n + 2*(-3)^n)/30 for n in (1..30)] # _G. C. Greubel_, Feb 01 2019
%o (GAP) Concatenation([0], List([1..30], n -> (3*2^n + 2*(-3)^n)/30)) # _G. C. Greubel_, Feb 01 2019
%Y Cf. A015441.
%K easy,sign
%O 0,5
%A _Paul Barry_, Dec 13 2003