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

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A015559 Expansion of x/(1 - 7*x - 3*x^2). 3
0, 1, 7, 52, 385, 2851, 21112, 156337, 1157695, 8572876, 63483217, 470101147, 3481157680, 25778407201, 190892323447, 1413581485732, 10467747370465, 77514976050451, 574008074464552, 4250601449403217, 31476234369216175 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = 7*a(n-1) + 3*a(n-2).
a(n) = (1/61)*sqrt(61)*(7/2 + (1/2)*sqrt(61))^n - (1/61)*(7/2 - (1/2)*sqrt(61))^n*sqrt(61), with n >= 0. - Paolo P. Lava, Jun 25 2008
MATHEMATICA
Join[{a=0, b=1}, Table[c=7*b+3*a; a=b; b=c, {n, 100}]] (* Vladimir Joseph Stephan Orlovsky, Jan 17 2011 *)
LinearRecurrence[{7, 3}, {0, 1}, 30] (* Vincenzo Librandi, Nov 14 2012 *)
CoefficientList[Series[x/(1-7x-3x^2), {x, 0, 30}], x] (* Harvey P. Dale, Nov 12 2017 *)
PROG
(Sage) [lucas_number1(n, 7, -3) for n in range(0, 21)] # Zerinvary Lajos, Apr 24 2009
(Magma) [n le 2 select n-1 else 7*Self(n-1) + 3*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-3*x^2))) \\ G. C. Greubel, Dec 30 2017
CROSSREFS
Sequence in context: A037593 A037684 A246513 * A097180 A259554 A147962
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 December 3 22:01 EST 2023. Contains 367540 sequences. (Running on oeis4.)