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!)
A015588 Expansion of x/(1 - 10*x - 3*x^2). 3
0, 1, 10, 103, 1060, 10909, 112270, 1155427, 11891080, 122377081, 1259444050, 12961571743, 133394049580, 1372825211029, 14128434259030, 145402818223387, 1496413485010960, 15400343304779761, 158492673502830490, 1631127764942644183, 16786755669934933300 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = 10*a(n-1) + 3*a(n-2).
MATHEMATICA
Join[{a=0, b=1}, Table[c=10*b+3*a; a=b; b=c, {n, 50}]] (* Vladimir Joseph Stephan Orlovsky, Mar 26 2011 *)
LinearRecurrence[{10, 3}, {0, 1}, 30] (* Vincenzo Librandi, Nov 15 2012 *)
PROG
(SageMath) [lucas_number1(n, 10, -3) for n in range(0, 20)] # Zerinvary Lajos, Apr 26 2009
(Magma) [n le 2 select n-1 else 10*Self(n-1) + 3*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 15 2012
(PARI) x='x+O('x^30); concat([0], Vec(x/(1-10*x-3*x^2))) \\ G. C. Greubel, Jan 06 2018
CROSSREFS
Sequence in context: A087393 A037596 A037687 * A370042 A162667 A227014
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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)