login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A306802
Position of highly composite numbers in the sequence of products of primorials.
8
1, 2, 3, 4, 6, 8, 11, 12, 13, 17, 20, 24, 27, 34, 36, 43, 47, 55, 67, 77, 84, 95, 102, 107, 112, 129, 133, 138, 154, 166, 183, 198, 211, 220, 245, 252, 261, 264, 294, 314, 348, 369, 390, 406, 446, 457, 476, 500, 533, 555, 582, 634, 652, 676, 726, 756, 822
OFFSET
1,2
COMMENTS
Indices of A002182 in A025487. All terms in A002182 are products of terms in A002110; A025487 lists products of terms in A002110.
The first 28 terms of this sequence and those of A293635 are identical since the smallest 28 terms of A002182 and A004394 are the same.
LINKS
EXAMPLE
The number 120 is 10th in the sequence of highly composite numbers, since it sets a record for the divisor counting function. The index of this number in A025487 is 17.
MATHEMATICA
Block[{P = Product[Prime@ i, {i, 8}], s, t, u}, s = Array[DivisorSigma[0, #] &, P]; t = Array[If[# == 1, {0}, Sort[FactorInteger[#][[All, -1]], Greater]] &, P]; u = Values[PositionIndex@ t][[All, 1]]; Map[FirstPosition[u, #][[1]] &, FirstPosition[s, #][[1]] & /@ Union@ FoldList[Max, s]] ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael De Vlieger, Mar 12 2019
STATUS
approved