OFFSET
0,2
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..407
Michael De Vlieger, Graph comparing a(n) in red with A307113(n) in blue
EXAMPLE
First terms of this sequence and the superabundant numbers within the intervals:
-------------------------------------------------------
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 6 2520 5040 10080 15120 25200 27720
6 5 55440 110880 166320 277200 332640
...
(Asterisks denote primorials in A004394.)
MATHEMATICA
Block[{nn = 8, P, s}, P = Nest[Append[#, #[[-1]] Prime@ Length@ #] &, {1}, nn + 1]; s = Array[DivisorSigma[1, # ]/# &, 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, Apr 02 2019
STATUS
approved