OFFSET
0,3
REFERENCES
Thomas Koshy, "Fibonacci and Lucas Numbers with Applications", Wiley, 2001
LINKS
FORMULA
EXAMPLE
a(2) = 5*a(1) + 3*a(0) = 5*1 + 3*1 = 8 which is the third term in the sequence.
MATHEMATICA
Transpose[NestList[Flatten[{Rest[#], ListCorrelate[{3, 5}, #]}]&, {1, 1}, 40]][[1]] (* Harvey P. Dale, Mar 23 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Parthasarathy Nambi, Nov 07 2005
EXTENSIONS
More terms from Robert G. Wilson v, Nov 10 2005
STATUS
approved