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.

Showing 1-2 of 2 results.

A097215 Numbers m such that A076078(m) = m and bigomega(m) >= 2; or in other words, A097214, excluding powers of 2.

Original entry on oeis.org

10, 44, 184, 752, 12224, 49024, 61064, 981520, 12580864, 206158168064, 16492668126208, 1080863908958322688, 18374686467592175488, 885443715520878608384, 4703919738602662723328, 226673591177468092350464, 232113757366000005450563584, 3894222643901120685369075227951104
Offset: 1

Views

Author

Matthew Vandermast, Aug 12 2004

Keywords

Comments

A076078(m) equals the number of sets of distinct positive integers with a least common multiple of m.
If 3*2^k - 1 is an odd prime then 2^k*(3*2^k-1) is in the sequence. - Farideh Firoozbakht, May 03 2009
For what seems to be an appearance of this sequence in a different context, see Harborth (2013). - N. J. A. Sloane, Jun 08 2013

Examples

			For example, there are 184 sets of distinct positive integers with a least common multiple of 184.
		

Crossrefs

Programs

  • Mathematica
    f[n_] := Block[{d = Divisors[n]}, Plus @@ (MoebiusMu[n/d](2^DivisorSigma[0, d] - 1))]; t = Union[ Table[ f[n], {n, 28000000}]]; Select[t, f[ # ] == # && !IntegerQ[ Log[2, # ]] &] (* Robert G. Wilson v, Aug 17 2004 *)
  • PARI
    A076078(n) = {local(f, l, s, t, q); f = factor(n); l = matsize(f)[1]; s = 0; forvec(v = vector(l, i, [0, 1]), q = sum(i = 1, l, v[i]); t = (-1)^(l - q)*2^prod(i = 1, l, f[i, 2] + v[i]); s += t); s; }
    lista(nn) = {my(w=List([]), m=1, q=2, g); for(k=1, logint(nn, 2)-1, q=nextprime(q+1); m=m*q; for(r=1, nn\2^k-1, g=factor(A076078(m*2^r))[, 2]; if(#g==k+1&&g[2]==1, listput(w, A076078(m*2^r))))); Set(w); } \\ Jinyuan Wang, Feb 11 2020

Extensions

More terms from Robert G. Wilson v, Aug 18 2004
More terms from Jinyuan Wang, Feb 11 2020

A097217 Odd numbers n such that A076078(n) > n, where A076078(n) equals the number of sets of distinct positive integers with a least common multiple of n.

Original entry on oeis.org

105, 135, 165, 195, 225, 315, 405, 495, 525, 567, 585, 675, 693, 765, 819, 825, 855, 945, 975, 1035, 1071, 1125, 1155, 1197, 1215, 1275, 1287, 1305, 1323, 1365, 1395, 1425, 1449, 1485, 1575, 1665, 1683, 1701, 1725, 1755, 1785, 1827, 1845, 1881, 1925
Offset: 1

Views

Author

Matthew Vandermast, Aug 13 2004

Keywords

Comments

Odd members of A097216.

Crossrefs

Showing 1-2 of 2 results.