OFFSET
0,3
COMMENTS
The inverse binomial transform is 1,0,1,... repeated with period 3, essentially A011655. - R. J. Mathar, Aug 28 2023
LINKS
FORMULA
3*a(n) = 2^(n+1) + A087204(n+1).
Also first differences of A024494.
G.f.: (1-2x+2x^2)/(1-3x+3x^2-2x^3).
Binomial transform of [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, ...]; i.e., ones in positions 2, 5, 8, 11, ... and the rest zeros. [Corrected by Gary W. Adamson, Jan 07 2008]
MATHEMATICA
a[n_] := a[n] = 3 a[n - 1] - 3 a[n - 2] + 2 a[n - 3]; a[0] = a[1] = 1; a[2] = 2; Table[a@n, {n, 0, 33}] (* Or *)
CoefficientList[ Series[(1 - 2 x + 2 x^2)/(1 - 3 x + 3 x^2 - 2 x^3), {x, 0, 33}], x] (* Robert G. Wilson v, Sep 08 2007 *)
LinearRecurrence[{3, -3, 2}, {1, 1, 2}, 40] (* Harvey P. Dale, Sep 17 2013 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paul Curtz, Jul 14 2007, Jul 18 2007
EXTENSIONS
Edited by N. J. A. Sloane, Jul 28 2007
STATUS
approved