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!)
A015591 Expansion of x/(1 - 10*x - 9*x^2). 3
0, 1, 10, 109, 1180, 12781, 138430, 1499329, 16239160, 175885561, 1905008050, 20633050549, 223475577940, 2420453234341, 26215812544870, 283942204557769, 3075364358481520, 33309123425835121, 360769513484684890, 3907477245679364989, 42321698078155813900 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Pisano period lengths: 1, 2, 1, 4, 4, 2, 48, 8, 1, 4, 10, 4, 84, 48, 4, 16, 272, 2, 360, 4, ... - R. J. Mathar, Aug 10 2012
LINKS
FORMULA
a(n) = 10*a(n-1) + 9*a(n-2).
a(n) = (-3*i)^(n-1) * ChebyshevU(n-1, -5*i/3). - G. C. Greubel, Feb 13 2021
MATHEMATICA
Join[{a=0, b=1}, Table[c=10*b+9*a; a=b; b=c, {n, 40}]] (* Vladimir Joseph Stephan Orlovsky, Mar 29 2011 *)
LinearRecurrence[{10, 9}, {0, 1}, 30] (* Vincenzo Librandi, Nov 15 2012 *)
Table[(-3 I)^(n - 1)*ChebyshevU[n - 1, 5 I/3], {n, 0, 30}] (* G. C. Greubel, Feb 13 2021 *)
PROG
(Sage) [lucas_number1(n, 10, -9) for n in range(0, 18)] # Zerinvary Lajos, Apr 26 2009
(Magma) [n le 2 select n-1 else 10*Self(n-1) + 9*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 15 2012
CROSSREFS
Cf. A254600.
Sequence in context: A198700 A320094 A267280 * A078922 A199760 A082181
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Extended by T. D. Noe, May 23 2011
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 23 10:34 EDT 2024. Contains 372760 sequences. (Running on oeis4.)