OFFSET
1,1
COMMENTS
LINKS
Wikipedia, Contraharmonic mean
EXAMPLE
The distinct prime factors of 190 are {2,5,19} and their contraharmonic mean is (4+25+361)/(2+5+19) = 15. Therefore, 190 is a term.
MATHEMATICA
pf[n_]:=First/@FactorInteger[n];
Select[Range[2, 241], IntegerQ[ContraharmonicMean[pf[#]]]&]
PROG
(PARI) isok(m) = if (m>1, my(f=factor(m)); !(norml2(f[, 1]) % vecsum(f[, 1]))); \\ Michel Marcus, Oct 01 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Ivan N. Ianakiev, Oct 01 2020
STATUS
approved