OFFSET
1,2
COMMENTS
Erdős and Nicolas named these numbers "nombres sans cube superabondants".
All the terms are either primorials (A002110) or products of two primorials.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1307
Paul Erdős and Jean-Louis Nicolas, Répartition des nombres superabondants", Bulletin de la Société Mathématique de France, Vol. 103 (1975), pp. 65-90. See section 5, p. 83.
MATHEMATICA
cubeFreeQ[n_] := Max @ FactorInteger[n][[;; , 2]] < 3; s = {}; rm = 0; Do[If[ !cubeFreeQ[n], Continue[]]; r = DivisorSigma[1, n]/n; If[r > rm, rm = r; AppendTo[s, n]], {n, 1, 10^6}]; s
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Aug 21 2019
STATUS
approved