A048786 Triangle of coefficients of certain exponential convolution polynomials.
1, 8, 1, 96, 24, 1, 1536, 576, 48, 1, 30720, 15360, 1920, 80, 1, 737280, 460800, 76800, 4800, 120, 1, 20643840, 15482880, 3225600, 268800, 10080, 168, 1, 660602880, 578027520, 144506880, 15052800, 752640, 18816, 224, 1
Offset: 1
Examples
Triangle begins: 1; 8, 1; 96, 24, 1; 1536, 576, 48, 1; 30720, 15360, 1920, 80, 1; ...
References
- S. Roman, The Umbral Calculus, Academic Press, New York, 1984
Links
- N. Nakashima and S. Tsujie, Enumeration of Flats of the Extended Catalan and Shi Arrangements with Species, arXiv:1904.09748 [math.CO], 2019.
Programs
-
Maple
# The function BellMatrix is defined in A264428. # Adds (1,0,0,0, ..) as column 0. BellMatrix(n -> 4^n*(n+1)!, 9); # Peter Luschny, Jan 28 2016
-
Mathematica
rows = 8; t = Table[4^n*(n+1)!, {n, 0, rows}]; T[n_, k_] := BellY[n, k, t]; Table[T[n, k], {n, 1, rows}, {k, 1, n}] // Flatten (* Jean-François Alcover, Jun 22 2018, after Peter Luschny *)
Formula
Extensions
T(8,4) corrected by Jean-François Alcover, Jun 22 2018
Comments