login
A384097
a(n) is the least number that has exactly n divisors and the differences between its consecutive divisors (ordered by size) are distinct.
1
1, 2, 4, 8, 16, 28, 64, 88, 196, 176, 1024, 352, 4096, 704, 1936, 1408, 65536, 2816, 262144, 5104, 7744, 11264, 4194304, 15488, 234256, 45056, 30976, 34112, 268435456, 61952, 1073741824, 68224, 123904, 720896, 937024, 136448, 68719476736, 2883584, 495616, 272896
OFFSET
1,2
COMMENTS
a(n) is the least term in A060683 that has n divisors.
Since 2^n is a term in A060683 for all n >= 0 and A000005(2^n) = n+1, then a(n) exists for all n.
FORMULA
a(n) <= 2^(n-1).
a(p) = 2^(p-1) for a prime p.
MATHEMATICA
q[n_] := UnsameQ @@ Differences[Divisors[n]]; seq[len_] := Module[{s = Table[0, {len}], c = 0, n = 1, i}, While[c < len, i = DivisorSigma[0, n]; If[i <= len && s[[i]] == 0 && q[n], c++; s[[i]] = n]; n++]; s]; seq[20]
PROG
(PARI) isA060683(k) = my(d=divisors(k)); #Set(vector(#d-1, k, d[k+1]-d[k])) == #d-1; \\ Michel Marcus at A060683
list(len) = {my(s = vector(len), c = 0, n = 1, i); while(c < len, i = numdiv(n); if(i <= len && s[i] == 0 && isA060683(n), c++; s[i] = n); n++); s; }
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Sep 16 2025
STATUS
approved