OFFSET
0,1
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
Conjecture: a(n) = 3*(3*n^4/2 - 2*n^3 + 3*n^2/2 + n + 1). [This is now a theorem - N. J. A. Sloane, Dec 31 2025]
From Elmo R. Oliveira, Apr 17 2026: (Start)
G.f.: 3*(1 + x)*(1 - 3*x + 15*x^2 + 5*x^3)/(1 - x)^5.
E.g.f.: 3*exp(x)*(2 + 4*x + 12*x^2 + 14*x^3 + 3*x^4)/2.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5). (End)
MAPLE
a366932:= n -> 3*(3*n^4/2 - 2*n^3 + 3*n^2/2 + n + 1); # N. J. A. Sloane, Jan 01 2026
MATHEMATICA
LinearRecurrence[{5, -10, 10, -5, 1}, {3, 9, 51, 255, 855}, 50] (* Paolo Xausa, Jan 02 2026 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Scott R. Shannon, Nov 02 2023
EXTENSIONS
Definition edited by N. J. A. Sloane, Dec 31 2025
STATUS
approved
