OFFSET
1,2
COMMENTS
These are highly composite numbers (A002182) that have no other largely composite numbers with the same number of divisors.
The corresponding numbers of divisors d(a(n)) are 1, 3, 9, 10, 18, 30, 60, 84, 90, 100, ... (see the link for more values).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..114
Amiram Eldar, Table of n, a(n), d(a(n)) for n = 1..114
EXAMPLE
4 is in the sequence since it is the only largely composite number with 3 divisors.
2 is not in the sequence since it has 2 divisors, the same as the next largely composite number 3.
MATHEMATICA
s = {}; dm = 1; c = 0; nprev = 1; Do[d = DivisorSigma[0, n]; If[d == dm, c++]; If[d > dm, dm = d; If[c == 1, AppendTo[s, nprev]]; c = 1; nprev = n], {n, 1, 10^8}]; s
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jun 06 2019
STATUS
approved