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.

A348923 Numbers that are both unitary and nonunitary harmonic numbers.

Original entry on oeis.org

45, 60, 3780, 64260, 3112200, 6320160
Offset: 1

Views

Author

Amiram Eldar, Nov 04 2021

Keywords

Comments

a(7) > 10^12, if it exists.
For each term the two sets of unitary and nonunitary divisors both contain more than one element. The only number with a single unitary divisor is 1 which does not have nonunitary divisors. Numbers with a single nonunitary divisor are the squares of primes which are not unitary harmonic numbers. Therefore, this sequence is a subsequence of A348715.
Nonsquarefree numbers k such that A034448(k) divides k*A034444(k) and A048146(k) divides k*A048105(k). - Daniel Suteu, Nov 05 2021

Examples

			45 is a term since the unitary divisors of 45 are 1, 5, 9 and 45, and their harmonic mean is 3, and the nonunitary divisors of 45 are 3 and 15, and their harmonic mean is 5.
		

Crossrefs

Intersection of A006086 and A319745.
Subsequence of A348715.
Cf. A348922.

Programs

  • Mathematica
    usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); Select[Range[65000], !SquareFreeQ[#] && IntegerQ[# * (d = 2^PrimeNu[#])/ (s = usigma[#])] && IntegerQ[# * (DivisorSigma[0, #] - d)/(DivisorSigma[1, #] - s)] &]