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

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A015570 Expansion of x/(1 - 7*x - 11*x^2). 1
0, 1, 7, 60, 497, 4139, 34440, 286609, 2385103, 19848420, 165175073, 1374558131, 11438832720, 95191968481, 792170939287, 6592308228300, 54860037930257, 456535656023099, 3799210009394520, 31616362282015729, 263105846077449823, 2189520907644321780, 18220810660362200513
(list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = 7*a(n-1) + 11*a(n-2).
MATHEMATICA
a[n_]:=(MatrixPower[{{1, 3}, {1, -8}}, n].{{1}, {1}})[[2, 1]]; Table[Abs[a[n]], {n, -1, 40}] (* Vladimir Joseph Stephan Orlovsky, Feb 19 2010 *)
LinearRecurrence[{7, 11}, {0, 1}, 30] (* Vincenzo Librandi, Nov 14 2012 *)
PROG
(Sage) [lucas_number1(n, 7, -11) for n in range(0, 20)] # Zerinvary Lajos, Apr 24 2009
(Magma) [n le 2 select n-1 else 7*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-7*x-11*x^2))) \\ G. C. Greubel, Jan 06 2018
CROSSREFS
Sequence in context: A063969 A366613 A303120 * A290756 A024090 A241770
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 19 16:34 EDT 2024. Contains 376014 sequences. (Running on oeis4.)