OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Ladder Graph.
Eric Weisstein's World of Mathematics, Visibility Polynomial.
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
a(n) = n*(13 + 8*n + 2*n^2 + n^3)/6.
a(n) = 5*a(n-1)-10*a(n-2)+10*a(n-3)-5*a(n-4)+a(n-5).
G.f.: x*(-4+5*x-2*x^2)/((-1+x)^2*(-1+2*x)).
MATHEMATICA
Table[n (13 + 8 n + 2 n^2 + n^3)/6, {n, 20}]
LinearRecurrence[{5, -10, 10, -5, 1}, {4, 15, 41, 94, 190}, 20]
CoefficientList[Series[(-4 + 5 x - 6 x^2 + x^3)/(-1 + x)^5, {x, 0, 20}], x]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Sep 25 2025
STATUS
approved
