OFFSET
1,1
FORMULA
T(n,k) = ((k+1) - (n-1)/2n) * Permute(n,k)^2
EXAMPLE
Triangle begins:
2
7 11
15 96 132
Take the 2-permutations of [2] namely 12 and 21 and form all possible strings that are concatenations of two of these permutations. These are 1212,1221,2112,2121 with 2,3,3,3 increasing runs respectively. T(2,2) = 2+3+3+3 = 11.
CROSSREFS
KEYWORD
AUTHOR
David Scambler, Oct 29 2006
STATUS
approved