OFFSET
0,8
COMMENTS
In the encoding given by A382754, the code of the graph corresponding to T(n,k) is 2^(n*(n-1)/2) + T(n,k) if n > 0.
The first case where a row is not an initial segment of the next row is T(4,11) = 11 != 7 = T(5,11).
FORMULA
T(n,k) <= k with equality if and only if 2^(n*(n-1)/2) + k is in A382754.
EXAMPLE
Triangle begins:
0;
0;
0, 1;
0, 1, 1, 3, 1, 3, 3, 7;
...
For n = 5, k = 11, 11 is 1011 in binary, which encodes the 5-vertex graph with edges (0,1), (0,2), and (0,4) (3 being an isolated vertex). The smallest code for an isomorphic graph is obtained by substituting the edge (0,3) for (0,4), resulting in the code 111 in binary, i.e., T(5,11) = 7.
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Pontus von Brömssen, Apr 04 2025
STATUS
approved
