OFFSET
0,8
COMMENTS
Here a word is irreducible if no letters can be removed without changing the maximal cardinality of C. The lengths of these words range from n to (n-1)*2.
LINKS
Sean A. Irvine, Java program (github)
John Tyler Rascoe, Python code.
Christian Sievers, clingo program
EXAMPLE
Triangle begins:
k=0 1 2 3 4 5 6
n=0 1;
n=1 0, 1;
n=2 0, 1, 1;
n=3 0, 2, 4, 1;
n=4 0, 9, 15, 9, 1;
n=5 0, 80, 79, 64, 16, 1;
n=6 0, 1226, 705, 471, 185, 25, 1;
...
The word (3,2,4,1,3,2) has subset C of largest size 1 and removing any of the repeated letters will change that, so this word is counted under T(4,1) = 9.
T(3,1) = 2: (2,3,1,2), (3,2,1).
T(3,2) = 4: (1,3,2), (2,1,3), (2,3,1), (3,1,2).
T(3,3) = 1: (1,2,3).
PROG
(Python) # see links
(clingo) % see links
CROSSREFS
KEYWORD
AUTHOR
John Tyler Rascoe, Nov 14 2025
EXTENSIONS
a(28)-a(44) from Sean A. Irvine, Nov 28 2025
a(45)-a(54) (row n=9) from Christian Sievers, Nov 30 2025
STATUS
approved
