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!)
A022350 Fibonacci sequence beginning 0, 16. 1

%I #20 Aug 26 2017 18:14:08

%S 0,16,16,32,48,80,128,208,336,544,880,1424,2304,3728,6032,9760,15792,

%T 25552,41344,66896,108240,175136,283376,458512,741888,1200400,1942288,

%U 3142688,5084976,8227664,13312640

%N Fibonacci sequence beginning 0, 16.

%H G. C. Greubel, <a href="/A022350/b022350.txt">Table of n, a(n) for n = 0..1000</a>

%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.: 16*x/(1-x-x^2). - _Philippe Deléham_, Nov 20 2008

%F a(n) = 16 * A000045(n). - _Vladimir Joseph Stephan Orlovsky_, Jun 08 2011

%t a={};b=0;c=16;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 Table[16*Fibonacci[n], {n,0,50}] (* or *) LinearRecurrence[{1,1}, {0,16}, 50] (* _G. C. Greubel_, Aug 26 2017 *)

%o (PARI) for(n=0,50, print1(16*fibonacci(n), ", ")) \\ _G. C. Greubel_, Aug 26 2017

%K nonn

%O 0,2

%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 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)