A253266 Numbers such that the minimum distance between divisors of n occurs only between composite numbers.
14399, 34595, 82943, 89999, 100793, 116963, 158389, 172975, 224675, 244783, 245021, 266255, 278783, 281957, 285155, 304703, 331177, 338723, 343387, 380545, 417571, 446369, 447557, 484415, 497021, 532763, 580601, 585221, 588115, 590359, 608399, 619157, 627263, 629993
Offset: 1
Keywords
Examples
The divisors of 14399 = 119*121 are 1, 7, 11, 17, 77, 119, 121, 187, 847, 1309, 2057, 14399. The minimum difference between divisors is 2, which occurs only between 119 and 121, both of which are composite; so 14399 is in the sequence. The divisors of 72 are 1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 36, 72. The minimum difference is 1, which does occur between two composites - 8, 9 - but it also occurs between pairs not both composite (e.g. 1, 2 or 3, 4), so 72 is not in the sequence.
Links
- Franklin T. Adams-Watters, Proof of assertion
Programs
-
PARI
isa(n) = local(ds=divisors(n),diff,mind,dcomp);mind=n;for(k=2,#ds,diff=ds[k]-ds[k-1];if(diff<=mind,if(diff
Comments