A371823 Triangle T(n, k) read by rows: Maximum number of patterns of length k in a permutation from row n in A371822.
1, 1, 1, 1, 2, 1, 1, 2, 4, 1, 1, 2, 6, 5, 1, 1, 2, 6, 12, 6, 1, 1, 2, 6, 17, 21, 7, 1, 1, 2, 6, 22, 41, 28, 8, 1, 1, 2, 6, 24, 69, 73, 36, 9, 1, 1, 2, 6, 24, 94, 156, 113, 45, 10, 1, 1, 2, 6, 24, 109, 273, 291, 162, 55, 11, 1, 1, 2, 6, 24, 118, 408, 614, 477, 220, 66, 12, 1, 1, 2, 6, 24, 120, 526, 1094, 1127, 699, 286, 78, 13, 1
Offset: 1
Examples
The triangle begins: n| k: 1| 2| 3| 4| 5| 6| 7| 8| 9 ==================================== [1] 1 [2] 1, 1 [3] 1, 2, 1 [4] 1, 2, 4, 1 [5] 1, 2, 6, 5, 1 [6] 1, 2, 6, 12, 6, 1 [7] 1, 2, 6, 17, 21, 7, 1 [8] 1, 2, 6, 22, 41, 28, 8, 1 [9] 1, 2, 6, 24, 69, 73, 36, 9, 1
Formula
T(n, k) <= A373778(n, k).
Conjecture: T(n, n-2) = ceiling(n*(n-1)/2), for n > 6. This is expected because this triangle does asymptotically approximate the factorial numbers from the left to the right and Pascal's triangle from right to the left.
Comments