OFFSET
0,8
REFERENCES
Louis Comtet, Analyse Combinatoire, PUF, 1970, Tome 2, pp. 98-99.
LINKS
J. M. Hammersley, An undergraduate exercise in manipulation, Math. Scientist, 14 (1989), 1-23. (Annotated scanned copy)
J. M. Hammersley, An undergraduate exercise in manipulation, Math. Scientist, 14 (1989), 1-23.
FORMULA
Sum_{k >= 0} (-1/2)^k*T(n, k) = (1/2)^n.
Sum_{k >= 0} (-1/6)^k*T(n, k) = (4^(n+1)- 1)/3*(6^n).
Equals A000035 DELTA [0, 1, 2, 4, 6, 9, 12, 16, 20, 25, 30, ...], where DELTA is Deléham's operator defined in A084938.
T(n,n-1) = A110501(n), Genocchi numbers of first kind of even index. - Philippe Deléham, Feb 16 2007
EXAMPLE
1;
1, 0;
1, 1, 0;
1, 3, 3, 0;
1, 6, 17, 17, 0;
1, 10, 55, 155, 155, 0;
...
MATHEMATICA
h[n_, x_] := Sum[c[k]*x^k, {k, 0, n}]; eq[n_] := SolveAlways[h[n, x*(x-1)] == EulerE[2*n, x], x]; row[n_] := Table[c[k], {k, 0, n}] /. eq[n] // First // Abs // Reverse; Table[row[n], {n, 0, 10}] // Flatten (* Jean-François Alcover, Oct 02 2013 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Philippe Deléham, Jul 19 2003
STATUS
approved