OFFSET
1,1
LINKS
Hieronymus Fischer, Table of n, a(n) for n = 1..10000
EXAMPLE
a(1) = 15, since 15 = 3*5 and (3+5)/2 = 4 is not prime.
a(5) = 50, since 50 = 2*5*5 and (2+5+5)/3 = 4 is not prime.
MATHEMATICA
fp[{a_, b_}]:=a*b; s={}; Do[If[q=Total[fp/@FactorInteger[n]]/Total[Last/@FactorInteger[n]]; IntegerQ[q]&&!PrimeQ[q], AppendTo[s, n]], {n, 2, 290}]; s (* James C. McMahon, Apr 05 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Hieronymus Fischer, Oct 23 2007
EXTENSIONS
Definition clarified by the author, May 06 2013
STATUS
approved
