OFFSET
1,1
COMMENTS
Subset of A078174. [R. J. Mathar, Sep 20 2008]
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
EXAMPLE
n=1972=2*17*29: mean=(2+17+29)/3=48/3=16, a square.
MATHEMATICA
Select[Range[2, 1000], IntegerQ@ Sqrt[Total[First /@ FactorInteger@ #]/PrimeNu@ #] &] (* Michael De Vlieger, Mar 28 2015 *)
PROG
(PARI) lista(nn) = {for (n=2, nn, f = factor(n); if ((#f~ != 1) && (type(q=sum(k=1, #f~, f[k, 1])/#f~) == "t_INT") && issquare(q), print1(n, ", ")); ); } \\ Michel Marcus, Mar 28 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Apr 11 2002
STATUS
approved