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”).

A086333
Index power of 2 in the first highly composite number m such that omega(m)=n.
1
1, 1, 2, 3, 3, 4, 4, 4, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 9, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 9, 9, 9, 9, 10, 10, 10, 10, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 10, 10, 10, 10
OFFSET
1,3
FORMULA
a(n) = A007814(A086332(n)). - David Wasserman, Mar 21 2005
MATHEMATICA
r = 0; s = 0; (MapIndexed[Set[t[First[#2]], #] &, #]; Set[m, Length[#]]) &[Import["https://oeis.org/A002182/b002182.txt", "Data"][[All, -1]]]; Reap[Do[If[r < #, r = #; If[s < #, s = #; Sow[IntegerExponent[t[i], 2]]] &[PrimeNu[t[i]]]] &[DivisorSigma[0, t[i]]], {i, m}]][[-1, 1]] (* Michael De Vlieger, Sep 26 2023, using bfile at A002182 *)
PROG
(PARI) count = 0; v = vector(2000000); pp = vector(90); pp[6] = 1; for (i = 7, 90, pp[i] = prime(i)*pp[i - 1]); for (a = 0, 14, n2 = 2^a; for (b = 0, min(a, 8), n3 = n2*3^b; for (c = 0, min(b, 5), n5 = n3*5^c; for (d = 0, min(c, 4), n7 = n5*7^d; for (e = 0, min(d, 3), n11 = n7*11^e; for (f = 0, min(e, 3), n13 = n11*13^f; if (f > 1, for (g = 6, 12, npp2 = n13*pp[g]; for (h = g, 90, n = npp2*pp[h]; count++; v[count] = n)), if (f == 1, for (h = 6, 90, n = n13*pp[h]; count++; v[count] = n), count++; v[count] = n13)))))))); v = vecsort(v[1..count]); dmax = 0; omax = 0; for (i = 1, count, dn = numdiv(v[i]); if (dn > dmax, dmax = dn; o = omega(v[i]); if (o > omax, omax = o; f = factor(v[i]); print1(f[1, 2], ", ")))); \\ David Wasserman, Mar 21 2005
CROSSREFS
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Sep 01 2003
EXTENSIONS
More terms from David Wasserman, Mar 21 2005
STATUS
approved