login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A356573
Sigma-dense numbers: integers k such that sigma(k) * log(1+log(1+log(1+k))) / (k * log(1+log(1+k))) sets a new record.
0
1, 2, 4, 6, 12, 24, 60, 120, 240, 360, 720, 840, 1260, 1680, 2520, 5040, 10080, 15120, 27720, 55440, 110880, 166320, 277200, 332640, 554400, 720720, 1441440, 2162160, 3603600, 4324320, 7207200, 10810800, 21621600, 36756720, 61261200, 73513440, 122522400, 183783600
OFFSET
1,2
COMMENTS
This sequence is to A210594 (the generalization in the latter's comment section) as sigma (A000203, the sum of divisors function) is to tau (A000005, the number of divisors function).
MATHEMATICA
s={}; dm = 0; Do[If[(d = DivisorSigma[1, n] * Log[1 + Log[1 + Log[1 + n]]] / (n * Log[1 + Log[1 + n]])) > dm, dm = d; AppendTo[s, n]], {n, 1, 10^5}]; s (* Amiram Eldar, Dec 12 2022 *)
PROG
(PARI) listas(nn) = {my(m=0); for (k=1, nn, my(mm = sigma(k)*log(1+log(1+log(1+k))) / (k * log(1+log(1+k)))); if (mm > m, print1(k, ", "); m = mm); ); } \\ Michel Marcus, Dec 12 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Hal M. Switkay, Dec 11 2022
EXTENSIONS
a(22)-a(31) from Michel Marcus, Dec 12 2022
a(32)-a(38) from Amiram Eldar, Dec 12 2022
STATUS
approved