A011801 Triangle read by rows, the inverse Bell transform of n!*binomial(4,n) (without column 0).
1, 4, 1, 36, 12, 1, 504, 192, 24, 1, 9576, 3960, 600, 40, 1, 229824, 100656, 17160, 1440, 60, 1, 6664896, 3048192, 563976, 54600, 2940, 84, 1, 226606464, 107255232, 21095424, 2256576, 142800, 5376, 112, 1, 8837652096, 4302305280, 887785920, 102332160, 7254576, 325584, 9072, 144, 1
Offset: 1
Examples
Triangle starts: 1; 4, 1; 36, 12, 1; 504, 192, 24, 1; 9576, 3960, 600, 40, 1; 229824, 100656, 17160, 1440, 60, 1; 6664896, 3048192, 563976, 54600, 2940, 84, 1; 226606464, 107255232, 21095424, 2256576, 142800, 5376, 112, 1;
Links
- G. C. Greubel, Rows n = 1..50 of the triangle, flattened
- P. Blasiak, K. A. Penson and A. I. Solomon, The general boson normal ordering problem, arXiv:quant-ph/0402027, 2004.
- Wolfdieter Lang, On generalizations of Stirling number triangles, J. Integer Seqs., Vol. 3 (2000), #00.2.4.
- Peter Luschny, The Bell transform
- Index entries for sequences related to Bessel functions or polynomials
Crossrefs
Programs
-
Magma
function T(n,k) // T = A011801 if k eq 0 then return 0; elif k eq n then return 1; else return (5*(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
-
Mathematica
(* First program *) T[n_, m_] /; n>=m>=1:= T[n, m]= (5*(n-1)-m)*T[n-1, m] + T[n-1, m-1]; T[n_, m_] /; n
Jean-François Alcover, Jun 20 2018 *) (* Second program *) rows = 10; b[n_, m_]:= BellY[n, m, Table[k! Binomial[4, k], {k, 0, rows}]]; T= Table[b[n, m], {n,rows}, {m,rows}]//Inverse//Abs; A011801= Table[T[[n, m]], {n,rows}, {m,n}]//Flatten (* Jean-François Alcover, Jun 22 2018 *) -
Sage
# uses[inverse_bell_matrix from A264428] # Adds 1,0,0,0, ... as column 0 at the left side of the triangle. inverse_bell_matrix(lambda n: factorial(n)*binomial(4, n), 8) # Peter Luschny, Jan 16 2016
Formula
Extensions
New name from Peter Luschny, Jan 16 2016
Comments