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

A382267 Denominator of the harmonic mean of the exponents in the prime factorization of n.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 3, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 3, 1, 1, 5, 1, 3, 1, 3, 1, 2, 1, 2, 1, 1, 1, 5, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 5, 1, 1, 3, 3, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 2, 1, 5, 1, 3, 1, 1, 1, 3, 1, 3, 3, 1
Offset: 2

Views

Author

Ilya Gutkovskiy, Mar 19 2025

Keywords

Examples

			1, 1, 2, 1, 1, 1, 3, 2, 1, 1, 4/3, 1, 1, 1, 4, 1, 4/3, 1, 4/3, 1, 1, 1, 3/2, 2, 1, 3, 4/3, ...
		

Crossrefs

Cf. A070012, A088530, A250097, A382266 (numerators).

Programs

  • Maple
    a:= n-> (l-> denom(nops(l)/add(1/i[2], i=l)))(ifactors(n)[2]):
    seq(a(n), n=2..100);  # Alois P. Heinz, Mar 21 2025
  • Mathematica
    Table[HarmonicMean[(#[[2]] & /@ FactorInteger[n])], {n, 2, 100}] // Denominator
Showing 1-1 of 1 results.