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 (8,-7,-6,1).
FORMULA
G.f.: x*(-2+5*x+x^2) / ( (x^2-7*x+1)*(x^2+x-1) ). - R. J. Mathar, Oct 26 2015
MATHEMATICA
Table[(Fibonacci[n]+Fibonacci[4n])/2, {n, 0, 20}] (* or *) LinearRecurrence[ {8, -7, -6, 1}, {0, 2, 11, 73}, 20] (* Harvey P. Dale, Oct 22 2017 *)
PROG
(PARI) for(n=0, 30, print1((fibonacci(4*n) + fibonacci(n))/2, ", ")) \\ G. C. Greubel, Dec 02 2017
(Magma) [(Fibonacci(4*n) + Fibonacci(n))/2: n in [0..30]]; // G. C. Greubel, Dec 02 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved