OFFSET
0,4
COMMENTS
The inverse binomial transform generally equals the sequence of first terms of the iterated differences (i.e., equals the diagonal of the arrangement in the standard hand-written display of the differences).
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (-2,0,1,2).
FORMULA
O.g.f.: x*(1 + x)/((x^2 +x +1)*(1 +2*x)*(1-x)). - R. J. Mathar, Jul 22 2008
a(n) = -2*a(n-1) + a(n-3) + 2*a(n-4). - G. C. Greubel, Oct 04 2016
MATHEMATICA
LinearRecurrence[{-2, 0, 1, 2}, {0, 1, -1, 2}, 50] (* G. C. Greubel, Oct 04 2016 *)
PROG
(PARI) concat(0, Vec(x*(1 + x)/((x^2 +x +1)*(1 +2*x)*(1-x)) + O(x^50))) \\ Michel Marcus, Oct 05 2016
CROSSREFS
KEYWORD
sign
AUTHOR
Paul Curtz, Dec 01 2007
EXTENSIONS
Edited and corrected by R. J. Mathar, Jul 22 2008
STATUS
approved