OFFSET
0,13
COMMENTS
Production array is [cos(x),x] with a column of 0's prepended.
Apart from signs, same as A147312. - N. J. A. Sloane, Nov 07 2008
Also the Bell transform of the Euler numbers. For the definition of the Bell transform see A264428. - Peter Luschny, Jan 29 2016
EXAMPLE
Triangle begins
1,
0, 1,
0, 0, 1,
0, -1, 0, 1,
0, 0, -4, 0, 1,
0, 5, 0, -10, 0, 1,
0, 0, 40, 0, -20, 0, 1
MAPLE
# The function BellMatrix is defined in A264428.
BellMatrix(n -> euler(n), 10); # Peter Luschny, Jan 29 2016
MATHEMATICA
BellMatrix[f_, len_] := With[{t = Array[f, len, 0]}, Table[BellY[n, k, t], {n, 0, len - 1}, {k, 0, len - 1}]];
rows = 12;
B = BellMatrix[EulerE, rows];
Table[B[[n, k]], {n, 1, rows}, {k, 1, n}] // Flatten (* Jean-François Alcover, Jun 26 2018, after Peter Luschny *)
CROSSREFS
KEYWORD
AUTHOR
Paul Barry, Nov 05 2008
EXTENSIONS
More terms from Jean-François Alcover, Jun 26 2018
STATUS
approved