OFFSET
1,1
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
a(n) = (2/3)*n^4 + n^3 + (5/6)*n^2 + (1/2)*n. - Corrected by Christian Krause, Jan 25 2026
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5).
G.f.: f(x)/g(x), where f(x) = x*(3 + 8*x + 5*x^2) and g(x) = (1-x)^5.
MATHEMATICA
(* See A213844. *)
LinearRecurrence[{5, -10, 10, -5, 1}, {3, 23, 90, 250, 565}, 50] (* Paolo Xausa, Apr 05 2026 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 05 2012
STATUS
approved
