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
0, 2, 2, 6, 10, 22, 42, 86, 170, 342, 682, 1366, 2730, 5462, 10922, 21846, 43690, 87382, 174762, 349526, 699050, 1398102, 2796202, 5592406, 11184810, 22369622, 44739242, 89478486, 178956970, 357913942, 715827882, 1431655766, 2863311530, 5726623062, 11453246122 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 0 and if n>=1, a(n) = 2^n - a(n-1).
a(n) = A078008(n+1). - Reinhard Zumkeller, Jun 10 2005
a(n) = 2*A001045(n). - Benoit Jubin, Dec 01 2011
a(n) = (2^(n+1) - 2*(-1)^n)/3. - Ralf Stephan, Jul 18 2013
G.f.: 2*x/(1+x)/(1-2*x). - Colin Barker, Feb 19 2012
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
MATHEMATICA
LinearRecurrence[{1, 2}, {0, 2}, 50] (* Vincenzo Librandi, Feb 19 2012 *)
PROG
(Haskell)
a014113 n = a014113_list !! n
a014113_list = 0 : 2 : zipWith (+)
(map (* 2) a014113_list) (tail a014113_list)
-- Reinhard Zumkeller, Jul 20 2013
CROSSREFS
Sequence in context: A019310 A078008 A151575 * A284462 A262278 A265639
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

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 06:16 EDT 2024. Contains 371782 sequences. (Running on oeis4.)