OFFSET
1,2
COMMENTS
EXAMPLE
The terms together with their prime factors begin:
1: {}
4: {2,2}
27: {3,3,3}
400: {2,2,2,2,5,5}
3125: {5,5,5,5,5}
9072: {2,2,2,2,3,3,3,3,7}
10800: {2,2,2,2,3,3,3,5,5}
14580: {2,2,3,3,3,3,3,3,5}
24057: {3,3,3,3,3,3,3,11}
35721: {3,3,3,3,3,3,7,7}
50625: {3,3,3,3,5,5,5,5}
73984: {2,2,2,2,2,2,2,2,17,17}
MATHEMATICA
prifac[n_]:=If[n==1, {}, Flatten[ConstantArray@@@FactorInteger[n]]];
prisig[n_]:=If[n==1, {}, Last/@FactorInteger[n]];
Select[Range[1000], Mean[prifac[#]]==Mean[prisig[#]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 25 2023
STATUS
approved