A337192 Triangular array read by rows. T(n,k) is the number of elements of rank k in the order complex of the poset P = [n] X [n], n=0, k=0 or n>0, 0<=k<=2n-1.
1, 1, 1, 1, 4, 5, 2, 1, 9, 27, 37, 24, 6, 1, 16, 84, 216, 309, 252, 110, 20, 1, 25, 200, 800, 1875, 2751, 2570, 1490, 490, 70, 1, 36, 405, 2290, 7755, 17088, 25493, 26070, 18060, 8120, 2142, 252, 1, 49, 735, 5537, 25235, 76293, 160867, 242845, 264936, 207690, 114282, 41958, 9240, 924
Offset: 0
Examples
1, 1, 1, 1, 4, 5, 2, 1, 9, 27, 37, 24, 6, 1, 16, 84, 216, 309, 252, 110, 20, 1, 25, 200, 800, 1875, 2751, 2570, 1490, 490, 70
Programs
-
Mathematica
f[x_, y_] := If[x <= y, 1, 0];Prepend[CoefficientList[ 1 + z (Table[G = Array[f, {n, n}]; \[Zeta] = Level[Table[Table[Flatten[TensorProduct[G, G][[i]][[All, j]]], {j, 1, n}], {i, 1, n}], {2}];a = Inverse[IdentityMatrix[n^2] - z (\[Zeta] - IdentityMatrix[n^2])];Table[1, {n^2}].a.Table[1, {n^2}], {n, 1, 10}]), z], {1}] // Grid
Comments