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”).

A015578
Expansion of x/(1 - 8*x - 11*x^2).
1
0, 1, 8, 75, 688, 6329, 58200, 535219, 4921952, 45263025, 416245672, 3827858651, 35201571600, 323719017961, 2976969431288, 27376664647875, 251759980927168, 2315223158543969, 21291145058550600, 195796615212388459, 1800575517343164272, 16558366906081587225, 152273265939427504792
OFFSET
0,3
FORMULA
a(n) = 8*a(n-1) + 11*a(n-2).
MATHEMATICA
Transpose[NestList[{Last[#], 8Last[#]+11First[#]}&, {0, 1}, 20]] [[1]] (* Harvey P. Dale, Mar 14 2011 *)
LinearRecurrence[{8, 11}, {0, 1}, 30] (* Vincenzo Librandi, Nov 14 2012 *)
PROG
(Sage) [lucas_number1(n, 8, -11) for n in range(0, 19)] # Zerinvary Lajos, Apr 25 2009
(Magma) [n le 2 select n-1 else 8*Self(n-1) + 11*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 14 2012
(PARI) x='x+O('x^30); concat([0], Vec(x/(1-8*x-11*x^2))) \\ G. C. Greubel, Jan 06 2018
CROSSREFS
Sequence in context: A123661 A288487 A123003 * A145600 A268085 A231617
KEYWORD
nonn,easy
STATUS
approved