login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A015603 a(n) = 11*a(n-1) + 9*a(n-2). 2
0, 1, 11, 130, 1529, 17989, 211640, 2489941, 29294111, 344644690, 4054738589, 47703926689, 561235840880, 6602929589881, 77683348056611, 913943194931650, 10752525276757649, 126503266798718989, 1488308662276727720, 17509924686232475821 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: x/(1 - 11*x - 9*x^2). - Zerinvary Lajos, Apr 27 2009
MATHEMATICA
Join[{a=0, b=1}, Table[c=11*b+9*a; a=b; b=c, {n, 60}]] (* Vladimir Joseph Stephan Orlovsky, Jan 31 2011 *)
LinearRecurrence[{11, 9}, {0, 1}, 30] (* Vincenzo Librandi, Nov 22 2012 *)
PROG
(Sage) [lucas_number1(n, 11, -9) for n in range(0, 18)] # Zerinvary Lajos, Apr 27 2009
(Magma) [n le 2 select n-1 else 11*Self(n-1) + 9*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 22 2012
(PARI) x='x+O('x^30); concat([0], Vec(x/(1-11*x-9*x^2))) \\ G. C. Greubel, Jan 16 2018
CROSSREFS
Sequence in context: A015602 A259507 A183837 * A184280 A266947 A157718
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
G.f. adapted to the offset by Vincenzo Librandi, Nov 22 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 14:32 EDT 2024. Contains 371960 sequences. (Running on oeis4.)