OFFSET
1,5
COMMENTS
Reverse of rows converges to 1,2,8,30,118,478,2004,8666,..
EXAMPLE
T(4,2) = 6 because the 6 involutions with longest increasing contiguous subsequence lengths equal to 2 are: 1324, 1432, 2143, 3214, 3412, 4231.
Table starts:
1;
1, 1;
1, 2, 1;
1, 6, 2, 1;
1, 14, 8, 2, 1;
1, 37, 27, 8, 2, 1;
1, 96, 94, 30, 8, 2, 1;
1, 270, 338, 114, 30, 8, 2, 1;
MATHEMATICA
(* first do *)
Needs["Combinatorica`"]
(* then *)
maxISS[perm_List] := Max[0, (Max @@ (Length[#1]*Sign[First[#1]] & ) /@ Split[Sign[Rest[#1] - Drop[#1, -1]]] & )[perm]]; classMaxISS[par_?PartitionQ]:=Count[ maxISS/@( TableauxToPermutation[FirstLexicographicTableau[par], #]&/@Tableaux[par] ) , #]&/@(-1+Range[ Tr[par] ]);
Table[Apply[Plus, classMaxISS/@Partitions[n]], {n, 2, 6}];
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Wouter Meeussen, Dec 20 2010
EXTENSIONS
Definition corrected by Wouter Meeussen, Dec 22 2010
STATUS
approved