A286030 Irregular triangle T(n,k) read by rows: Let S be a 3-member set of integers {f,g,h} where f >= g >= h >= 0 and f+g+h = n. Let S(n,k) be an irregular triangle composed of all S listed in reverse lexicographic order by row n. Then T(n,k) = n!*Q/(3*f!*g!*h!), where Q is the number of permutations of S(n,k). (See "Comments" and "Examples" for additional explanation.)
1, 1, 2, 1, 6, 2, 1, 8, 6, 12, 1, 10, 20, 20, 30, 1, 12, 30, 30, 20, 120, 30, 1, 14, 42, 42, 70, 210, 140, 210, 1, 16, 56, 56, 112, 336, 70, 560, 420, 560, 1, 18, 72, 72, 168, 504, 252, 1008, 756, 630, 2520, 560
Offset: 1
Examples
Triangle T(n,k) begins: n/k 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1: 1 2: 1, 2 3: 1, 6, 2 4: 1, 8, 6, 12 5: 1, 10, 20, 20, 30 6: 1, 12, 30, 30, 20, 120, 30 7: 1, 14, 42, 42, 70, 210, 140, 210 8: 1, 16, 56, 56, 112, 336, 70, 560, 420, 560 9: 1, 18, 72, 72, 168, 504, 252, 1008, 756, 630, 2520, 560 10: 1, 20, 90, 90, 240, 720, 420, 1680, 1260, 252, 2520, 5040, 3150, 4200 Triangle S(n,k) begins: n/k 1 2 3 4 5 6 7 1: {1,0,0} 2: {2,0,0} {1,1,0} 3: {3,0,0} {2,1,0} {1,1,1} 4: {4,0,0} {3,1,0} {2,2,0} {2,1,1} 5: {5,0,0} {4,1,0} {3,2,0} {3,1,1} {2,2,1} 6: {6,0,0} {5,1,0} {4,2,0} {4,1,1} {3,3,0} {3,2,1} {2,2,2} T(4,3) = 6 because n=4 and S(4,3) = {2,2,0}; so Q=3 and 3*4!/(3*2!*2!*0!) = 6. Therefore p = 6/27 = 2/9 that the overall win record = {2,2,0} after playing 4 tournament games.
Links
- Nicolas Behr, Pawel Sobocinski, Rule Algebras for Adhesive Categories, arXiv:1807.00785 [cs.LO], 2018, also LIPIcs 27th EACSL Annual Conference on Computer Science Logic (CSL 2018), Vol. 119, pp. 11:1-11:21.
Comments