OFFSET
1,1
COMMENTS
Numbers with a single powerful divisor > 1 are A060687 and trivially have an integer harmonic mean.
The least term that is not divisible by 5 (or 25) is a(5446) = 1413721.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
100 is a term since its powerful divisors > 1 are 4, 25 and 100 and their harmonic mean, 10, is an integer.
MATHEMATICA
powQ[n_] := Min[FactorInteger[n][[;; , 2]]] > 1; powHarmQ[n_] := Module[{d = Select[Divisors[n], powQ]}, Length[d] > 1 && IntegerQ[HarmonicMean[d]]]; Select[Range[10^4], powHarmQ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 09 2021
STATUS
approved