OFFSET
1,5
COMMENTS
By the Clique-Size Dominance Theorem, the minimum coding clique size for faithful CC-transformation embedding is K_min = k+1. This triangle gives the distribution of that threshold.
LINKS
Sean A. Irvine, Table of n, a(n) for n = 1..78
Alejandro Zarzuelo Urdiales, Clique-Size Dominance Threshold Distribution: Enumerating Labeled Graphs by Clique Number, Zenodo, 2026.
Alejandro Zarzuelo Urdiales, Lean 4 formalization and Python verification code, GitHub.
FORMULA
T(n,1) = T(n,n) = 1 (corresponding to empty and complete graphs).
T(n,k) = c(n,k) - c(n,k-1), where c(n,k) = number of K_{k+1}-free labeled graphs on n vertices (inclusion-exclusion).
T(n,n-1) = n*2^(n-1) - n*(n-1)/2 - n for n>=2.
EXAMPLE
Triangle begins:
n=1: 1;
n=2: 1, 1;
n=3: 1, 6, 1;
n=4: 1, 40, 22, 1;
n=5: 1, 387, 570, 65, 1;
n=6: 1, 5788, 21837, 4970, 171, 1;
n=7: 1, 133500, 1353096, 576247, 33887, 420, 1;
n=8: 1, 4682269, 142458868, 110940707, 10151470, 201152, 988, 1.
CROSSREFS
KEYWORD
tabl,nonn
AUTHOR
Alejandro Zarzuelo Urdiales, May 04 2026
EXTENSIONS
a(37)-a(45) from Sean A. Irvine, May 07 2026
STATUS
approved
