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.

A066921 a(n) = lcm(Omega(n), omega(n)).

Original entry on oeis.org

0, 1, 1, 2, 1, 2, 1, 3, 2, 2, 1, 6, 1, 2, 2, 4, 1, 6, 1, 6, 2, 2, 1, 4, 2, 2, 3, 6, 1, 3, 1, 5, 2, 2, 2, 4, 1, 2, 2, 4, 1, 3, 1, 6, 6, 2, 1, 10, 2, 6, 2, 6, 1, 4, 2, 4, 2, 2, 1, 12, 1, 2, 6, 6, 2, 3, 1, 6, 2, 3, 1, 10, 1, 2, 6, 6, 2, 3, 1, 10, 4, 2, 1, 12, 2, 2, 2, 4, 1, 12, 2, 6, 2, 2, 2, 6, 1, 6, 6, 4, 1, 3
Offset: 1

Views

Author

Benoit Cloitre, Jan 23 2002

Keywords

Examples

			a(32) = 5 because Omega(32) = 5, omega(32) = 1, and lcm(5, 1) = 5.
a(33) = 2 because Omega(33) = 2, omega(33) = 2.
		

Crossrefs

Cf. A001221 (omega), A001222 (Omega), A066922, A113901.

Programs

  • Mathematica
    Table[LCM[PrimeOmega[n], PrimeNu[n]], {n, 100}] (* Alonso del Arte, Dec 25 2015 *)
  • PARI
    a(n) = { lcm(bigomega(n),omega(n)) } \\ Harry J. Smith, Apr 06 2010

Formula

a(n) = A113901(n)/A066922(n). - Amiram Eldar, May 07 2025