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!)
A015566 Expansion of x/(1 - 7*x - 9*x^2). 3

%I #35 Dec 30 2023 23:41:39

%S 0,1,7,58,469,3805,30856,250237,2029363,16457674,133467985,1082394961,

%T 8777976592,71187390793,577313524879,4681881191290,37968990062941,

%U 307919861162197,2497159938701848,20251398321372709,164234227697925595

%N Expansion of x/(1 - 7*x - 9*x^2).

%H Vincenzo Librandi, <a href="/A015566/b015566.txt">Table of n, a(n) for n = 0..1000</a>

%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (7,9).

%F a(n) = 7*a(n-1) + 9*a(n-2).

%t Join[{a=0,b=1},Table[c=7*b+9*a;a=b;b=c,{n,100}]] (* _Vladimir Joseph Stephan Orlovsky_, Jan 17 2011 *)

%t LinearRecurrence[{7, 9}, {0, 1}, 30] (* _Vincenzo Librandi_, Nov 14 2012 *)

%o (Sage) [lucas_number1(n,7,-9) for n in range(0, 20)] # _Zerinvary Lajos_, Apr 24 2009

%o (Magma) [n le 2 select n-1 else 7*Self(n-1) + 9*Self(n-2): n in [1..30]]; // _Vincenzo Librandi_, Nov 14 2012

%o (PARI) x='x+O('x^30); concat([0], Vec(x/(1-7*x-9*x^2))) \\ _G. C. Greubel_, Dec 31 2017

%K nonn,easy

%O 0,3

%A _Olivier GĂ©rard_

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.)