OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..595
Index entries for linear recurrences with constant coefficients, signature (48, -48, 1).
FORMULA
G.f.: (1+29*x)/(1-48*x+48*x^2-x^3).
a(0)=1, a(1)=77, a(2)=3648, a(n)=48*a(n-1)-48*a(n-2)+a(n-3). - Harvey P. Dale, Jun 20 2013
MATHEMATICA
(Fibonacci[8Range[0, 20]+5]-2)/3 (* or *) LinearRecurrence[{48, -48, 1}, {1, 77, 3648}, 20] (* Harvey P. Dale, Jun 20 2013 *)
PROG
(PARI) for(n=0, 30, print1((fibonacci(8*n+5) - 2)/3, ", ")) \\ G. C. Greubel, Dec 02 2017
(Magma) [(Fibonacci(8*n+5) - 2)/3: n in [0..30]]; // G. C. Greubel, Dec 02 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Description corrected by and more terms from Michael Somos
STATUS
approved