OFFSET
0,5
COMMENTS
Values divided by 2 are 0, 0, 0, 0, 4, 35, 209, 1078, 5194, 24171, 110373, ...
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
László Németh, Pascal pyramid in the space H^2 x R, arXiv:1701.06022 [math.CO], 2017 (5th line of Table 2).
Index entries for linear recurrences with constant coefficients, signature (13,-65,159,-200,122,-28).
FORMULA
a(n) = 13*a(n-1) - 65*a(n-2) + 159*a(n-3) - 200*a(n-4) + 122*a(n-5) - 28*a(n-6), n >= 7.
G.f.: 2*x^4*(4 - 17*x + 14*x^2) / ((1 - x)*(1 - 2*x)*(1 - 4*x + 2*x^2)*(1 - 6*x + 7*x^2)). - Colin Barker, Oct 07 2017
MATHEMATICA
LinearRecurrence[{13, -65, 159, -200, 122, -28}, {0, 0, 0, 0, 8, 70, 418}, 30] (* Harvey P. Dale, Oct 29 2023 *)
PROG
(PARI) concat(vector(4), Vec(2*x^4*(4 - 17*x + 14*x^2) / ((1 - x)*(1 - 2*x)*(1 - 4*x + 2*x^2)*(1 - 6*x + 7*x^2)) + O(x^30))) \\ Colin Barker, Oct 07 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric M. Schmidt, Oct 03 2017
STATUS
approved