OFFSET
0,1
LINKS
Index entries for linear recurrences with constant coefficients, signature (2, 1, -2, -1).
FORMULA
a(n)= ((11*n+15)*F(n+1)+7*(n+1)*F(n))/5, with F(n) := A000045(n) (Fibonacci).
G.f.: (3+2*x)/(1-x-x^2)^2.
a(0)=3, a(1)=8, a(2)=19, a(3)=40, a(n)=2*a(n-1)+a(n-2)-2*a(n-3)-a(n-4). - Harvey P. Dale, Aug 25 2014
MATHEMATICA
Table[((11n+15)Fibonacci[n+1]+7(n+1)Fibonacci[n])/5, {n, 0, 30}] (* or *) LinearRecurrence[{2, 1, -2, -1}, {3, 8, 19, 40}, 30] (* Harvey P. Dale, Aug 25 2014 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Feb 15 2002
STATUS
approved