OFFSET
0,5
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
László Németh, Hyperbolic Pascal pyramid, arXiv:1511.0267 [math.CO], 2015 (3rd line of Table 1).
Index entries for linear recurrences with constant coefficients, signature (12,-37,37,-12,1).
FORMULA
a(n) = 12*a(n-1) - 37*a(n-2) + 37*a(n-3) - 12*a(n-4) + a(n-5), n >= 6.
G.f.: x^3*(1 - 9*x + 10*x^2) / ((1 - x)*(1 - 8*x + x^2)*(1 - 3*x + x^2)). - Colin Barker, Sep 17 2017
MATHEMATICA
CoefficientList[Series[x^3*(1 - 9*x + 10*x^2)/((1 - x)*(1 - 8*x + x^2)*(1 - 3*x + x^2)), {x, 0, 30}], x] (* Wesley Ivan Hurt, Sep 17 2017 *)
PROG
(PARI) concat(vector(3), Vec(x^3*(1 - 9*x + 10*x^2) / ((1 - x)*(1 - 8*x + x^2)*(1 - 3*x + x^2)) + O(x^30))) \\ Colin Barker, Sep 17 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric M. Schmidt, Sep 13 2017
STATUS
approved