%I #7 Jun 28 2018 08:24:56
%S 1,0,3,0,3,9,0,6,27,27,0,18,99,162,81,0,72,450,945,810,243,0,360,2466,
%T 6075,6885,3645,729,0,2160,15876,43848,59535,42525,15309,2187,0,15120,
%U 117612,354564,548289,476280,234738,61236,6561,0,120960,986256,3189348
%N A triangular sequence from a functional coefficient expansion of a raising factorial type: p(x,t)=1/(1-t)^(m*x);m=3.
%C Row sums are:
%C {1, 3, 12, 60, 360, 2520, 20160, 181440, 1814400, 19958400, 239500800}
%C Also the Bell transform of A052560. For the definition of the Bell transform see A264428. - _Peter Luschny_, Jan 27 2016
%D Steve Roman, The Umbral Calculus, Dover Publications, New York (1984), pp. 62 - 63
%F p(x,t)=1/(1-t)^(m*x)=Sum[s(x,n)*t^n/n!;m=3. out_n,m=n!*Coefficients( s(x,n)).
%e {1},
%e {0, 3},
%e {0, 3, 9},
%e {0, 6, 27, 27},
%e {0, 18, 99, 162, 81},
%e {0, 72, 450, 945, 810, 243},
%e {0, 360, 2466, 6075, 6885, 3645, 729},
%e {0, 2160, 15876, 43848, 59535, 42525, 15309, 2187},
%e {0, 15120, 117612, 354564, 548289, 476280, 234738, 61236, 6561},
%e {0, 120960, 986256, 3189348, 5450004, 5455107, 3306744, 1194102, 236196, 19683},
%e {0, 1088640, 9239184, 31662900, 58618080, 65445975, 46126017, 20667150, 5708070, 885735, 59049}
%p # The function BellMatrix is defined in A264428.
%p BellMatrix(n -> 3*n!, 8); # _Peter Luschny_, Jan 27 2016
%t Clear[p, g, m]; m = 3; p[t_] = 1/(1 - t)^(m*x); Table[ ExpandAll[n!SeriesCoefficient[ Series[p[t], {t, 0, 30}], n]], {n, 0, 10}]; a = Table[n!* CoefficientList[SeriesCoefficient[ Series[p[t], {t, 0, 30}], n], x], {n, 0, 10}]; Flatten[a]
%t (* Second program: *)
%t BellMatrix[f_, len_] := With[{t = Array[f, len, 0]}, Table[BellY[n, k, t], {n, 0, len - 1}, {k, 0, len - 1}]];
%t B = BellMatrix[3#!&, rows = 12];
%t Table[B[[n, k]], {n, 1, rows}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Jun 28 2018, after _Peter Luschny_ *)
%K nonn,uned,tabl
%O 1,3
%A _Roger L. Bagula_, Apr 20 2008