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!)
A022131 Fibonacci sequence beginning 4, 11. 1

%I #22 May 08 2018 09:00:24

%S 4,11,15,26,41,67,108,175,283,458,741,1199,1940,3139,5079,8218,13297,

%T 21515,34812,56327,91139,147466,238605,386071,624676,1010747,1635423,

%U 2646170,4281593,6927763,11209356,18137119,29346475,47483594,76830069,124313663

%N Fibonacci sequence beginning 4, 11.

%H Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a>

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

%F G.f.: (4+7x)/(1-x-x^2). - _Philippe Deléham_, Nov 19 2008

%F a(n) = ((10 + 9*sqrt(5))/5)*((1 + sqrt(5))/2)^n + ((10 - 9*sqrt(5))/5)*((1 - sqrt(5))/2)^n starting at n=0. - _Bogart B. Strauss_, Oct 27 2013

%t a={};b=4;c=11;AppendTo[a, b];AppendTo[a, c];Do[b=b+c;AppendTo[a, b];c=b+c;AppendTo[a, c], {n, 4!}];a (* _Vladimir Joseph Stephan Orlovsky_, Sep 17 2008 *)

%t LinearRecurrence[{1,1},{4,11},40] (* _Harvey P. Dale_, May 08 2018 *)

%Y Cf. A000032.

%K nonn,easy

%O 0,1

%A _N. J. A. Sloane_

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 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)