OFFSET
0,6
COMMENTS
See A264428 and the link for the definition of the Bell transform and the Bell matrix.
LINKS
Andreas B. G. Blobel, On convolution powers of 1/x, arXiv:2203.09519 [math.CO], 2022.
Peter Luschny, The Bell transform
EXAMPLE
[n\k 0 1 2 3 4 5 6 7]
[0] [1]
[1] [0, 1]
[2] [0, 1, 2]
[3] [0, 2, 9, 6]
[4] [0, 6, 50, 72, 24]
[5] [0, 24, 350, 850, 600, 120]
[6] [0, 120, 3014, 11250, 12900, 5400, 720]
[7] [0, 720, 31164, 170618, 286650, 191100, 52920, 5040]
MATHEMATICA
(* The function BellMatrix is defined in A264428 *)
nmax = 8;
M = BellMatrix[1/(# + 1)&, nmax + 1];
B[n_, k_] := M[[n + 1, k + 1]];
T[n_, k_] := n! B[n, k];
Table[T[n, k], {n, 0, nmax}, {k, 0, n}] // Flatten (* Jean-François Alcover, Jul 12 2019 *)
PROG
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Dec 20 2015
STATUS
approved