login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A225678
Triangle read by rows, T(n,k) = sum_{j=0..n} (-1)^(n+k+j) A(n,j)*C(j,n-k), A(n,j) the Eulerian numbers; n >= 0, k >= 0.
1
1, 0, 1, 0, 1, 0, 0, 1, 2, -2, 0, 1, 8, -8, 0, 0, 1, 22, -6, -32, 16, 0, 1, 52, 84, -272, 136, 0, 0, 1, 114, 606, -1168, -96, 816, -272, 0, 1, 240, 2832, -2176, -8832, 11904, -3968, 0, 0, 1, 494, 11122, 11072, -83360, 71168, 13312, -31744, 7936, 0, 1, 1004
OFFSET
0,9
EXAMPLE
[0] 1
[1] 0, 1
[2] 0, 1, 0
[3] 0, 1, 2, -2
[4] 0, 1, 8, -8, 0
[5] 0, 1, 22, -6, -32, 16
[6] 0, 1, 52, 84, -272, 136, 0
MAPLE
with(combinat): A225678 := (n, k) -> add((-1)^(n+k+j)*eulerian1(n, j) *binomial(j, n-k), j=0..n); seq(print(seq(A225678(n, k), k=0..n)), n=0..8);
CROSSREFS
Cf. A141720.
Sequence in context: A029583 A011289 A288387 * A141720 A353449 A248017
KEYWORD
sign,tabl
AUTHOR
Peter Luschny, May 12 2013
STATUS
approved