OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (16,-104,336,-476,-112,1064,-432,-1222,432,1064, 112,-476,-336,-104,-16,-1).
FORMULA
a(n) = Sum_{k=0..floor(n/2)} 2^(n-2*k) * binomial(n-k+7, 7) * binomial(n-k, k).
a(n) = ((34083315 +46659654*n +24858030*n^2 +6632968*n^3 +939632*n^4 +67304*n^5 + 1912*n^6)*(n+1)*U(n+1) + (7204365 +13225068*n +8230910*n^2 +2411744*n^3 + 362968*n^4 +27088*n^5 +792*n^6)*(n+2)*U(n))/(2^18*3^2*5*7), with U(n) = A000129(n+1), n >= 0.
G.f.: 1/(1-(2+x)*x)^8.
a(n) = F'''''''(n+8, 2)/7!, that is, 1/7! times the 7th derivative of the (n+8)-th Fibonacci polynomial evaluated at x=2. - T. D. Noe, Jan 19 2006
MATHEMATICA
CoefficientList[Series[1/(1-2*x-x^2)^8, {x, 0, 40}], x] (* G. C. Greubel, Oct 03 2022 *)
PROG
(Magma) R<x>:=PowerSeriesRing(Integers(), 40); Coefficients(R!( 1/(1-2*x-x^2)^8 )); // G. C. Greubel, Oct 03 2022
(SageMath)
def A073384_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 1/(1-2*x-x^2)^8 ).list()
A073384_list(40) # G. C. Greubel, Oct 03 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Aug 02 2002
STATUS
approved