cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A086333 Index power of 2 in the first highly composite number m such that omega(m)=n.

Original entry on oeis.org

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

Views

Author

Lekraj Beedassy, Sep 01 2003

Keywords

Crossrefs

Programs

  • 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 *)
  • 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

Formula

a(n) = A007814(A086332(n)). - David Wasserman, Mar 21 2005

Extensions

More terms from David Wasserman, Mar 21 2005