OFFSET
0,5
LINKS
W. F. Klostermeyer, M. E. Mays, L. Soltes and G. Trapp, A Pascal rhombus, Fibonacci Quarterly, 35 (1997), 318-328.
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
For n>2, a(n) = (1/24) [n^4 + 14n^3 - 97n^2 + 154n - 24 ].
From Chai Wah Wu, Mar 11 2021: (Start)
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5) for n > 7.
G.f.: x^3*(-x^4 + 3*x^3 + x^2 - 3*x - 1)/(x - 1)^5. (End)
PROG
(PARI) a(n)=if(n>2, n^4 + 14*n^3 - 97*n^2 + 154*n - 24, 0)/24 \\ Charles R Greathouse IV, Oct 21 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, May 28 2005
STATUS
approved