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!)
A014113 a(n) = a(n-1) + 2*a(n-2) with a(0)=0, a(1)=2. 9

%I #71 Nov 02 2023 12:24:22

%S 0,2,2,6,10,22,42,86,170,342,682,1366,2730,5462,10922,21846,43690,

%T 87382,174762,349526,699050,1398102,2796202,5592406,11184810,22369622,

%U 44739242,89478486,178956970,357913942,715827882,1431655766,2863311530,5726623062,11453246122

%N a(n) = a(n-1) + 2*a(n-2) with a(0)=0, a(1)=2.

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

%H INRIA Algorithms Project, <a href="http://ecs.inria.fr/services/structure?nbr=457">Encyclopedia of Combinatorial Structures 457</a>

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

%F a(0) = 0 and if n>=1, a(n) = 2^n - a(n-1).

%F a(n) = A078008(n+1). - _Reinhard Zumkeller_, Jun 10 2005

%F a(n) = 2*A001045(n). - _Benoit Jubin_, Dec 01 2011

%F a(n) = (2^(n+1) - 2*(-1)^n)/3. - _Ralf Stephan_, Jul 18 2013

%F G.f.: 2*x/(1+x)/(1-2*x). - Colin Barker, Feb 19 2012

%F G.f.: 1/Q(0) -1, where Q(k) = 1 + 2*x^2 - (2*k+3)*x + x*(2*k+1 - 2*x)/Q(k+1); (continued fraction). - _Sergei N. Gladkovskii_, Oct 05 2013

%t LinearRecurrence[{1,2},{0,2},50] (* _Vincenzo Librandi_, Feb 19 2012 *)

%o (Haskell)

%o a014113 n = a014113_list !! n

%o a014113_list = 0 : 2 : zipWith (+)

%o (map (* 2) a014113_list) (tail a014113_list)

%o -- _Reinhard Zumkeller_, Jul 20 2013

%Y Cf. A001045, A078008, A163271, A290732.

%K nonn,easy

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