OFFSET
0,4
COMMENTS
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Kival Ngaokrajang, Illustration of initial terms
Kival Ngaokrajang, Illustration for n = 5
Index entries for linear recurrences with constant coefficients, signature (9,-20,12).
FORMULA
a(n) = (24-15*2^n+6^n)/40 for n>0. G.f.: -3*x^3 / ((x-1)*(2*x-1)*(6*x-1)). - Colin Barker, Apr 18 2014
MAPLE
A241271:=n->`if`(n=0, 0, (24-15*2^n+6^n)/40); seq(A241271(n), n=0..40); # Wesley Ivan Hurt, Apr 19 2014
MATHEMATICA
CoefficientList[Series[-3 x^3/((x - 1) (2 x - 1) (6 x - 1)), {x, 0, 40}], x] (* Vincenzo Librandi, Apr 19 2014 *)
LinearRecurrence[{9, -20, 12}, {0, 0, 0, 3}, 30] (* Harvey P. Dale, Dec 28 2021 *)
PROG
(PARI) a(n) = if(n<=0, 0, if(n<2, 0, if(n<3, 0, a(n-1)*6+3*(2^(n-2)-1))))
for(n=0, 100, print1(a(n), ", "))
(PARI) concat([0, 0, 0], Vec(-3*x^3/((x-1)*(2*x-1)*(6*x-1)) + O(x^100))) \\ Colin Barker, Apr 18 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Kival Ngaokrajang, Apr 18 2014
STATUS
approved