OFFSET
0,3
COMMENTS
The coefficients of the polygonal polynomials are antidiagonals of A139600.
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (7,-19,25,-16,4).
FORMULA
a(n) = 2^n * Sum_{k=0..n} A139600(n, k) * 2^(-k).
a(n) = [x^n] x*(-4*x^2 + 3*x - 1) / ((1 - 2*x)^2*(x - 1)^3).
a(n) = 8 + 4*n + n^2 + (n-4) * 2^(n+1). - Vaclav Kotesovec, Feb 21 2023
a(n) = 7*a(n-1) - 19*a(n-2) + 25*a(n-3) - 16*a(n-4) + 4*a(n-5) for n > 4. - Chai Wah Wu, Apr 16 2025
MAPLE
gf := (x*(-4*x^2 + 3*x - 1)) / ((1 - 2*x)^2*(x - 1)^3):
ser := series(gf, x, 32): seq(coeff(ser, x, n), n = 0..30);
MATHEMATICA
(* Alternative: *)
LinearRecurrence[{7, -19, 25, -16, 4}, {0, 1, 4, 13, 40}, 35] (* Paolo Xausa, Jun 25 2026 *)
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
Peter Luschny, Feb 13 2023
STATUS
approved
