login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A111365
a(n) = 5*a(n-1) + 3*a(n-2) where a(0) = a(1) = 1.
0
1, 1, 8, 43, 239, 1324, 7337, 40657, 225296, 1248451, 6918143, 38336068, 212434769, 1177182049, 6523214552, 36147618907, 200307738191, 1109981547676, 6150830952953, 34084099407793, 188872989897824, 1046617247712499
OFFSET
0,3
REFERENCES
Thomas Koshy, "Fibonacci and Lucas Numbers with Applications", Wiley, 2001
FORMULA
a(n)=A015536(n+1)-4*A015536(n). G.f.: (1-4x)/(1-5x-3x^2). [From R. J. Mathar, Jul 08 2009]
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
Sequence in context: A239033 A034361 A117617 * A199321 A346198 A144039
KEYWORD
nonn
AUTHOR
Parthasarathy Nambi, Nov 07 2005
EXTENSIONS
More terms from Robert G. Wilson v, Nov 10 2005
STATUS
approved