OFFSET
1,1
COMMENTS
Subsequence of A070005.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
EXAMPLE
n = 993 = 3*331, mean = 334/2 = 167, a prime.
MATHEMATICA
ffi[x_] := Flatten[FactorInteger[x]] lf[x_] := Length[FactorInteger[x]] ba[x_] := Table[Part[ffi[x], 2*w-1], {w, 1, lf[x]}] Do[s=Apply[Plus, ba[n]]/lf[n]; If[PrimeQ[s]&&Greater[lf[n], 1], Print[n]], {n, 2, 1000}]
(* Second program: *)
Select[Range@ 600, And[! PrimePowerQ@ #, PrimeQ@ Mean[FactorInteger[#][[All, 1]]]] &] (* Michael De Vlieger, Jul 18 2017 *)
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") && isprime(q), print1(n, ", ")); ); } \\ Michel Marcus, Mar 28 2015
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Labos Elemer, Apr 11 2002
STATUS
approved