cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A171382 a(n) = (2*2^n+7*(-1)^n)/3.

Original entry on oeis.org

3, -1, 5, 3, 13, 19, 45, 83, 173, 339, 685, 1363, 2733, 5459, 10925, 21843, 43693, 87379, 174765, 349523, 699053, 1398099, 2796205, 5592403, 11184813, 22369619, 44739245, 89478483, 178956973, 357913939, 715827885, 1431655763, 2863311533
Offset: 0

Views

Author

Klaus Brockhaus, Dec 07 2009

Keywords

Comments

a(n) = A155980(n+2).
a(n) = A135351(n+3)-A135351(n+2).
Second binomial transform of a signed version of A005032 preceded by 3.
Inverse binomial transform of A008776 preceded by 3.

Crossrefs

Cf. A155980 (First differences of A135351), A135351 ((2^n+3-7*(-1)^n+3*0^n)/6), A005032 (7*3^n), A008776 (2*3^n).

Programs

  • Magma
    [ (2*2^n+7*(-1)^n)/3: n in [0..32] ];
  • Mathematica
    Nest[Append[#,Last[#]+2#[[-2]]]&,{3,-1},40]  (* Harvey P. Dale, Apr 07 2011 *)

Formula

a(n) = a(n-1)+2*a(n-2) for n > 1; a(0) = 3, a(1) = -1.
a(n) = 2^n-a(n-1) for n > 0; a(0) = 3.
G.f.: (3-4*x)/((1+x)*(1-2*x)).