A089504 A generalization of triangle A071951 (Legendre-Stirling).
1, 6, 1, 36, 30, 1, 216, 756, 90, 1, 1296, 18360, 6156, 210, 1, 7776, 441936, 387720, 31356, 420, 1, 46656, 10614240, 23705136, 4150440, 119556, 756, 1, 279936, 254788416, 1432922400, 521757936, 29257200, 373572, 1260, 1, 1679616
Offset: 1
Examples
[1]; [6,1]; [36,30,1]; [216,756,90,1]; ... a(3,2) = 30 = ((-1)*(3*2*1)^1 + 4*(4*3*2)^1)/3.
Links
- R. B. Corcino, K. J. M. Gonzales, M. J. C. Loquias and E. L. Tan, Dually weighted Stirling-type sequences, arXiv preprint arXiv:1302.4694 [math.CO], 2013.
- R. B. Corcino, K. J. M. Gonzales, M. J. C. Loquias and E. L. Tan, Dually weighted Stirling-type sequences, Europ. J. Combin., 43, 2015, 55-67.
- W. Lang, First 8 rows.
Crossrefs
Programs
-
Mathematica
max = 10; f[m_] := 1/Product[1 - FactorialPower[r + 2, 3]*x, {r, 1, m}]; col[m_] := CoefficientList[f[m] + O[x]^(max - m + 1), x]; a[n_, m_] := col[m][[n - m + 1]]; Table[a[n, m], {n, 1, max}, {m, 1, n}] // Flatten (* Jean-François Alcover, Sep 01 2016 *)
Comments