OFFSET
0,2
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..4149
A. Flammenkamp, List of the first 779,674 highly composite numbers
EXAMPLE
a(3) = 5 since there are 5 highly composite numbers A002110(3) <= m < A002110(4), i.e., 30 <= m < 210: {36, 48, 60, 120, 180}.
--------------------------------------------------------------------
0 1 1
1 2 2 4
2 3 6 12 24
3 5 36 48 60 120 180
4 6 240 360 720 840 1260 1680
5 8 2520 5040 7560 10080 15120 20160 25200 27720
...
MATHEMATICA
Block[{nn = 8, P, s}, P = Nest[Append[#, #[[-1]] Prime@ Length@ #] &, {1}, nn + 1]; s = DivisorSigma[0, Range@ P[[nn + 1]] ]; s = Map[FirstPosition[s, #][[1]] &, Union@ FoldList[Max, s]]; Table[Count[s, _?(If[! IntegerQ@ #, 1, #] &@ P[[i]] <= # < P[[i + 1]] &)], {i, nn}]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael De Vlieger, Mar 25 2019
STATUS
approved