The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A015602 a(n) = 11 a(n-1) + 8 a(n-2). 1
0, 1, 11, 129, 1507, 17609, 205755, 2404177, 28091987, 328245273, 3835433899, 44815735073, 523656556995, 6118748007529, 71495480538779, 835400269986801, 9761366814165043, 114058237115709881, 1332731542786129035, 15572512867573098433 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: x/(1 - 11*x - 8*x^2). - Zerinvary Lajos, Apr 27 2009
MATHEMATICA
Join[{a=0, b=1}, Table[c=11*b+8*a; a=b; b=c, {n, 60}]] (* Vladimir Joseph Stephan Orlovsky, Jan 31 2011 *)
LinearRecurrence[{11, 8}, {0, 1}, 30] (* Vincenzo Librandi, Nov 22 2012 *)
CoefficientList[Series[(-x)/(8x^2+11x-1), {x, 0, 30}], x] (* Harvey P. Dale, Nov 01 2017 *)
PROG
(Sage) [lucas_number1(n, 11, -8) for n in range(0, 18)] # Zerinvary Lajos, Apr 27 2009
(Magma) [n le 2 select n-1 else 11*Self(n-1) + 8*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 22 2012
CROSSREFS
Sequence in context: A015601 A024144 A201877 * A259507 A183837 A015603
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 June 6 13:08 EDT 2024. Contains 373128 sequences. (Running on oeis4.)