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-4 of 4 results.

A348964 Exponential harmonic (or e-harmonic) numbers of type 2: numbers k such that the harmonic mean of the exponential divisors of k is an integer.

Original entry on oeis.org

1, 2, 3, 5, 6, 7, 10, 11, 12, 13, 14, 15, 17, 18, 19, 21, 22, 23, 26, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 46, 47, 51, 53, 55, 57, 58, 59, 60, 61, 62, 65, 66, 67, 69, 70, 71, 73, 74, 75, 77, 78, 79, 82, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94
Offset: 1

Views

Author

Amiram Eldar, Nov 05 2021

Keywords

Comments

Sándor (2006) proved that all the squarefree numbers are e-harmonic of type 2.
Equivalently, numbers k such that A348963(k) | k * A049419(k).
Apparently, most exponential harmonic numbers of type 1 (A348961) are also terms of this sequence. Those that are not exponential harmonic numbers of type 2 are 1936, 5808, 9680, 13552, 17424, 29040, ...

Examples

			The squarefree numbers are trivial terms. If k is squarefree, then it has a single exponential divisor, k itself, and thus the harmonic mean of its exponential divisors is also k, which is an integer.
12 is a term since its exponential divisors are 6 and 12, and their harmonic mean, 8, is an integer.
		

Crossrefs

A005117 and A348965 are subsequences.
Similar sequences: A001599, A006086, A063947, A286325, A319745.

Programs

  • Mathematica
    f[p_, e_] := p^e * DivisorSigma[0, e] / DivisorSum[e, p^(e-#) &]; ehQ[1] = True; ehQ[n_] := IntegerQ[Times @@ f @@@ FactorInteger[n]]; Select[Range[100], ehQ]

A348962 Exponential harmonic numbers of type 1 (A348961) that are not squarefree.

Original entry on oeis.org

36, 180, 252, 396, 468, 612, 675, 684, 828, 1044, 1116, 1260, 1332, 1350, 1476, 1548, 1692, 1800, 1908, 1936, 1980, 2124, 2196, 2340, 2412, 2556, 2628, 2700, 2772, 2844, 2988, 3060, 3204, 3276, 3420, 3492, 3636, 3708, 3852, 3924, 4068, 4140, 4284, 4572, 4716
Offset: 1

Views

Author

Amiram Eldar, Nov 05 2021

Keywords

Comments

Sándor (2006) proved that all the squarefree numbers are exponential harmonic numbers of type 1.

Examples

			36 = 2^2 * 3^2 is a term since it is not squarefree, A051377(36) = 72, 36 * A049419(36) = 36 * 4 = 144, so A051377(36) | 36 * A049419(36).
		

Crossrefs

Intersection of A013929 and A348961.

Programs

  • Mathematica
    f[p_, e_] := p^e * DivisorSigma[0, e] / DivisorSum[e, p^# &]; ehQ[1] = True; ehQ[n_] := IntegerQ[Times @@ f @@@ FactorInteger[n]]; Select[Range[5000], ! SquareFreeQ[#] && ehQ[#] &]

A349020 Modified e-perfect numbers (A349019) that are not squarefree.

Original entry on oeis.org

12, 36, 40, 60, 84, 120, 132, 150, 156, 180, 204, 208, 228, 252, 270, 276, 280, 348, 360, 372, 396, 420, 440, 444, 468, 492, 516, 520, 540, 544, 564, 600, 612, 624, 636, 660, 680, 684, 708, 732, 760, 780, 804, 828, 840, 852, 876, 920, 924, 948, 996, 1020, 1040
Offset: 1

Views

Author

Amiram Eldar, Nov 06 2021

Keywords

Comments

Since all the squarefree numbers (A005117) are modified e-perfect numbers, these are the nontrivial terms of A349019.

Examples

			12 = 2^2 * 3 is a term since it is not squarefree and A348963(12) = 3 is a divisor of 12.
		

Crossrefs

Intersection of A013929 and A349019.
A348965 is a subsequence.
Cf. A005117.

Programs

  • Mathematica
    f[p_, e_] := p^e/DivisorSum[e, p^(e - #) &]; modEPerfQ[1] = True; modEPerfQ[n_] := IntegerQ[Times @@ f @@@ FactorInteger[n]]; Select[Range[1000], ! SquareFreeQ[#] && modEPerfQ[#] &]

A349027 Exponential unitary harmonic numbers (A349026) that are not squarefree.

Original entry on oeis.org

12, 18, 36, 40, 60, 75, 84, 90, 120, 126, 132, 135, 144, 150, 156, 180, 198, 204, 228, 234, 252, 270, 276, 280, 306, 342, 348, 360, 372, 396, 414, 420, 440, 444, 450, 468, 492, 516, 520, 522, 525, 540, 544, 558, 564, 588, 600, 612, 630, 636, 660, 666, 675, 680
Offset: 1

Views

Author

Amiram Eldar, Nov 06 2021

Keywords

Comments

First differs from A348965 at n = 13.
All squarefree numbers are exponential unitary harmonic numbers.

Examples

			12 = 2^2 * 3 is a term since it is not squarefree, its exponential unitary divisors are 6 and 12, and their harmonic mean, 8, is an integer.
		

Crossrefs

Intersection of A013929 and A349026.

Programs

  • Mathematica
    f[p_, e_] := p^e * 2^PrimeNu[e] / DivisorSum[e, p^(e - #) &, CoprimeQ[#, e/#] &]; euhQ[1] = True; euhQ[n_] := IntegerQ[Times @@ f @@@ FactorInteger[n]]; Select[Range[1000], ! SquareFreeQ[#] && euhQ[#] &]
Showing 1-4 of 4 results.