A308508 Numbers (including primorials) that satisfy "three rules that highly composite numbers must have" (see Comments below) but are not highly composite numbers.
30, 96, 192, 210, 384, 420, 480, 768, 960, 1080, 1440, 1536, 1920, 2160, 2310, 2880, 3072, 3360, 3840, 4320, 4620, 5760, 6144, 6300, 6480, 6720, 7680, 8640, 9240, 11520, 12288, 12600, 12960, 13440, 13860, 15360, 17280, 18480, 23040, 24576, 25920, 26880, 30030
Offset: 1
Keywords
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..16384 (first 137 terms from Giovanni Resta).
Programs
-
Mathematica
limit = 2*10^5; hc = {1}; r=1; Do[t = DivisorSigma[0, n]; If[t > r, r=t; AppendTo[hc, n]], {n, 2, limit, 2}]; ok[n_] := Block[{f = FactorInteger[n]}, ! MemberQ[hc, n] && f[[-1, 2]] == 1 && Max[ Differences[Last /@ f]] <= 0 && Union[ Differences[ PrimePi[ First /@ f]]] == {1}]; Select[Range[2, limit, 2], ok] (* Giovanni Resta, Jun 10 2019 *)
Extensions
a(40)-a(43) from Giovanni Resta, Jun 04 2019
Comments