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

%I #34 Sep 08 2022 08:44:45

%S 3,11,14,25,39,64,103,167,270,437,707,1144,1851,2995,4846,7841,12687,

%T 20528,33215,53743,86958,140701,227659,368360,596019,964379,1560398,

%U 2524777,4085175,6609952,10695127,17305079,28000206,45305285,73305491,118610776

%N Fibonacci sequence beginning 3, 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.: (3+8*x)/(1-x-x^2). - _Philippe Deléham_, Nov 19 2008

%F a(n) = 8*Fibonacci(n) + 3*Fibonacci(n+1). - _Lechoslaw Ratajczak_, Mar 14 2020

%F a(n) = a(n-1) + a(n-2). - _Wesley Ivan Hurt_, Jun 17 2021

%t a={};b=3;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},{3,11},40] (* _Harvey P. Dale_, Jan 27 2012 *)

%o (Magma) [8*Fibonacci(n) + 3*Fibonacci(n+1): n in [0..40]]; // _Vincenzo Librandi_, Mar 17 2020

%Y Cf. A000032, A000045.

%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 19 07:38 EDT 2024. Contains 371782 sequences. (Running on oeis4.)