A004747 Triangle read by rows: the Bell transform of the triple factorial numbers A008544 without column 0.
1, 2, 1, 10, 6, 1, 80, 52, 12, 1, 880, 600, 160, 20, 1, 12320, 8680, 2520, 380, 30, 1, 209440, 151200, 46480, 7840, 770, 42, 1, 4188800, 3082240, 987840, 179760, 20160, 1400, 56, 1, 96342400, 71998080, 23826880, 4583040, 562800, 45360, 2352, 72, 1
Offset: 1
Examples
Triangle begins: 1; 2, 1; 10, 6, 1; 80, 52, 12, 1; 880, 600, 160, 20, 1; 12320, 8680, 2520, 380, 30, 1; 209440, 151200, 46480, 7840, 770, 42, 1; Tree combinatorics for T(3,2)=6: Consider first the unordered forest of m=2 plane trees with n=3 vertices, namely one vertex with out-degree r=0 (root) and two different trees with two vertices (one root with out-degree r=1 and a leaf with r=0). The 6 increasing labelings come then from the forest with rooted (x) trees x, o-x (1,(3,2)), (2,(3,1)) and (3,(2,1)) and similarly from the second forest x, x-o (1,(2,3)), (2,(1,3)) and (3,(1,2)).
Links
- G. C. Greubel, Rows n = 1..50 of the triangle, flattened
- F. Bergeron, Ph. Flajolet and B. Salvy, Varieties of increasing trees, Lecture Notes in Computer Science vol. 581, ed. J.-C. Raoult, Springer 1992, pp. 24-48.
- P. Blasiak, K. A. Penson and A. I. Solomon, The general boson normal ordering problem, arXiv:quant-ph/0402027, 2004.
- Richell O. Celeste, Roberto B. Corcino, and Ken Joffaniel M. Gonzales. Two Approaches to Normal Order Coefficients, Journal of Integer Sequences, Vol. 20 (2017), Article 17.3.5.
- Tom Copeland, A Class of Differential Operators and the Stirling Numbers
- Milan Janjic, Some classes of numbers and derivatives, JIS 12 (2009) #09.8.3.
- Wolfdieter Lang, On generalizations of Stirling number triangles, J. Integer Seqs., Vol. 3 (2000), #00.2.4.
- Wolfdieter Lang, Combinatorial Interpretation of Generalized Stirling Numbers, J. Int. Seqs. Vol. 12 (2009) #09.3.3.
- Mathias Pétréolle and Alan D. Sokal, Lattice paths and branched continued fractions. II. Multivariate Lah polynomials and Lah symmetric functions, arXiv:1907.02645 [math.CO], 2019.
- Index entries for sequences related to Bessel functions or polynomials
Crossrefs
Programs
-
Magma
function T(n,k) // T = A004747 if k eq 0 then return 0; elif k eq n then return 1; else return (3*(n-1)-k)*T(n-1,k) + T(n-1,k-1); end if; end function; [T(n,k): k in [1..n], n in [1..12]]; // G. C. Greubel, Oct 03 2023
-
Maple
T := (n, m) -> 3^n/m!*(1/3*m*GAMMA(n-1/3)*hypergeom([1-1/3*m, 2/3-1/3*m, 1/3-1/3*m], [2/3, 4/3-n], 1)/GAMMA(2/3)-1/6*m*(m-1)*GAMMA(n-2/3)*hypergeom( [1-1/3*m, 2/3-1/3*m, 4/3-1/3*m], [4/3, 5/3-n], 1)/Pi*3^(1/2)*GAMMA(2/3)): for n from 1 to 6 do seq(simplify(T(n,k)),k=1..n) od; # Karol A. Penson, Feb 06 2004 # The function BellMatrix is defined in A264428. # Adds (1,0,0,0, ..) as column 0. BellMatrix(n -> mul(3*k+2, k=(0..n-1)), 9); # Peter Luschny, Jan 29 2016
-
Mathematica
(* First program *) T[1,1]= 1; T[, 0]= 0; T[0, ]= 0; T[n_, m_]:= (3*(n-1)-m)*T[n-1, m]+T[n-1, m-1]; Flatten[Table[T[n, m], {n,12}, {m,n}] ][[1 ;; 45]] (* Jean-François Alcover, Jun 16 2011, after recurrence *) (* Second program *) f[n_, m_]:= m/n Sum[Binomial[k, n-m-k] 3^k (-1)^(n-m-k) Binomial[n+k-1, n-1], {k, 0, n-m}]; Table[n! f[n, m]/(m! 3^(n-m)), {n,12}, {m,n}]//Flatten (* Michael De Vlieger, Dec 23 2015 *) (* Third program *) rows = 12; T[n_, m_]:= BellY[n, m, Table[Product[3k+2, {k, 0, j-1}], {j, 0, rows}]]; Table[T[n, m], {n,rows}, {m,n}]//Flatten (* Jean-François Alcover, Jun 22 2018 *)
-
Sage
# uses [bell_transform from A264428] triplefactorial = lambda n: prod(3*k+2 for k in (0..n-1)) def A004747_row(n): trifact = [triplefactorial(k) for k in (0..n)] return bell_transform(n, trifact) [A004747_row(n) for n in (0..10)] # Peter Luschny, Dec 21 2015
Formula
T(n, m) = n!*A048966(n, m)/(m!*3^(n-m));
T(n+1, m) = (3*n-m)*T(n, m)+ T(n, m-1), for n >= m >= 1, with T(n, m) = 0, for n
E.g.f. of m-th column: ( 1 - (1-3*x)^(1/3) )^m/m!.
Sum_{k=1..n} T(n, k) = A015735(n).
For a formula expressed as special values of hypergeometric functions 3F2 see the Maple program below. - Karol A. Penson, Feb 06 2004
T(n,1) = A008544(n-1). - Peter Luschny, Dec 23 2015
Extensions
New name from Peter Luschny, Dec 21 2015
Comments