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!)
A206419 Fibonacci sequence beginning 11, 7. 3

%I #19 Sep 08 2022 08:46:01

%S 11,7,18,25,43,68,111,179,290,469,759,1228,1987,3215,5202,8417,13619,

%T 22036,35655,57691,93346,151037,244383,395420,639803,1035223,1675026,

%U 2710249,4385275,7095524,11480799,18576323,30057122,48633445,78690567,127324012

%N Fibonacci sequence beginning 11, 7.

%H Vincenzo Librandi, <a href="/A206419/b206419.txt">Table of n, a(n) for n = 1..1000</a>

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

%F From _Andrew Howroyd_, Aug 28 2018: (Start)

%F a(n) = a(n-1) + a(n-2) for n > 2.

%F a(n) = 11*Fibonacci(n) - 4*Fibonacci(n-1).

%F G.f.: x*(11 - 4*x)/(1 - x - x^2).

%F (End)

%t LinearRecurrence[{1, 1}, {11, 7}, 60]

%t CoefficientList[Series[x (11-4x)/(1-x-x^2),{x,0,40}],x] (* _Harvey P. Dale_, Jun 24 2021 *)

%o (Magma) I:=[11, 7]; [n le 2 select I[n] else Self(n-1)+Self(n-2): n in [1..50]]; // _Vincenzo Librandi_, Feb 18 2012

%o (PARI) Vec((11 - 4*x)/(1 - x - x^2) + O(x^30)) \\ _Andrew Howroyd_, Aug 28 2018

%Y Cf. A000045.

%K nonn

%O 1,1

%A _Vladimir Joseph Stephan Orlovsky_, Feb 07 2012

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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)