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!)
A015548 Expansion of x/(1 - 5*x - 12*x^2). 5
0, 1, 5, 37, 245, 1669, 11285, 76453, 517685, 3505861, 23741525, 160777957, 1088788085, 7373275909, 49931836565, 338138493733, 2289874507445, 15507034462021, 105013666399445, 711152745541477, 4815927724500725, 32613471569001349 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = 2*A099919(n-1) + 1, for n>=1.
a(n) = 5 a(n-1) + 12 a(n-2).
MATHEMATICA
Join[{a=0, b=1}, Table[c=5*b+12*a; a=b; b=c, {n, 100}]] (* Vladimir Joseph Stephan Orlovsky, Jan 16 2011 *)
LinearRecurrence[{5, 12}, {0, 1}, 30] (* Vincenzo Librandi, Nov 13 2012 *)
CoefficientList[Series[x/(1-5x-12x^2), {x, 0, 30}], x] (* Harvey P. Dale, May 27 2023 *)
PROG
(Sage) [lucas_number1(n, 5, -12) for n in range(0, 21)] # Zerinvary Lajos, Apr 24 2009
(Magma) [n le 2 select n-1 else 5*Self(n-1) + 12*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 13 2012
(PARI) x='x+O('x^30); concat([0], Vec(x/(1-5*x-12*x^2))) \\ G. C. Greubel, Jan 16 2018
CROSSREFS
Cf. A015564 (binom. transf.)
Sequence in context: A088582 A088583 A202556 * A183385 A054417 A080507
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 09:38 EDT 2024. Contains 372302 sequences. (Running on oeis4.)