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!)
A015587 Expansion of x/(1 - 9*x - 11*x^2). 2
0, 1, 9, 92, 927, 9355, 94392, 952433, 9610209, 96968644, 978430095, 9872525939, 99615464496, 1005136965793, 10142002801593, 102334531838060, 1032572817360063, 10418835206459227, 105127817849093736, 1060757547912895121, 10703223927556087185, 107997348375046630996 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Pisano period lengths: 1, 3, 4, 6, 20, 12, 48, 6, 12, 60, 5, 12,168, 48, 20, 12,288, 12, 6, 60,... - R. J. Mathar, Aug 10 2012
LINKS
FORMULA
a(n) = 9*a(n-1) + 11*a(n-2).
MATHEMATICA
Join[{a=0, b=1}, Table[c=9*b+11*a; a=b; b=c, {n, 40}]] (* Vladimir Joseph Stephan Orlovsky, Mar 29 2011 *)
LinearRecurrence[{9, 11}, {0, 1}, 30] (* Vincenzo Librandi, Nov 15 2012 *)
PROG
(Sage) [lucas_number1(n, 9, -11) for n in range(0, 19)] # Zerinvary Lajos, Apr 26 2009
(Magma) [n le 2 select n-1 else 9*Self(n-1) + 11*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 15 2012
(PARI) x='x+O('x^30); concat([0], Vec(x/(1-9*x-11*x^2))) \\ G. C. Greubel, Jan 06 2018
CROSSREFS
Sequence in context: A128384 A164913 A007403 * A024117 A261855 A076456
KEYWORD
nonn,easy
AUTHOR
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 May 7 17:24 EDT 2024. Contains 372310 sequences. (Running on oeis4.)