OFFSET
1,2
COMMENTS
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10000
MATHEMATICA
Differences[Select[Range[500], Length[Split[Divisors[#], #2 <= 2*# &]] == 1 &]] (* Paolo Xausa, Oct 23 2025 *)
PROG
(Python)
from itertools import count, islice
from sympy import divisors
def A389763_gen(): # generator of terms
m = 1
for k in count(2):
ds = divisors(k)
for i in range(len(ds)-1):
if (ds[i]<<1)<ds[i+1]:
break
else:
yield k-m
m = k
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Oct 20 2025
STATUS
approved
