A359904 Numbers whose prime factors and prime signature have the same mean.
1, 4, 27, 400, 3125, 9072, 10800, 14580, 24057, 35721, 50625, 73984, 117760, 134400, 158976, 181440, 191488, 389376, 452709, 544000, 583680, 664848, 731136, 774400, 823543, 878592, 965888
Offset: 1
Keywords
Examples
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}
Crossrefs
Programs
-
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[#]]&]
Comments