A147311 Riordan array [1, arcsin(tanh(x))].
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, 0, -61, 0, 175, 0, -35, 0, 1, 0, 0, -768, 0, 560, 0, -56, 0, 1, 0, 1385, 0, -4996, 0, 1470, 0, -84, 0, 1, 0, 0, 24320, 0, -22720, 0, 3360, 0, -120, 0, 1, 0, -50521, 0, 214445, 0, -81730, 0, 6930, 0, -165, 0, 1
Offset: 0
Examples
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
Programs
-
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 *)
Extensions
More terms from Jean-François Alcover, Jun 26 2018
Comments