A364157 Numbers whose rounded-down (floor) mean of prime factors (with multiplicity) is 2.
2, 4, 6, 8, 12, 16, 18, 24, 32, 36, 40, 48, 54, 64, 72, 80, 96, 108, 120, 128, 144, 160, 162, 192, 216, 224, 240, 256, 288, 320, 324, 360, 384, 432, 448, 480, 486, 512, 576, 640, 648, 672, 720, 768, 800, 864, 896, 960, 972, 1024, 1080, 1152, 1280, 1296, 1344
Offset: 1
Keywords
Examples
The terms together with their prime factors begin: 2 = 2 4 = 2*2 6 = 2*3 8 = 2*2*2 12 = 2*2*3 16 = 2*2*2*2 18 = 2*3*3 24 = 2*2*2*3 32 = 2*2*2*2*2 36 = 2*2*3*3 40 = 2*2*2*5 48 = 2*2*2*2*3 54 = 2*3*3*3 64 = 2*2*2*2*2*2 72 = 2*2*2*3*3 80 = 2*2*2*2*5 96 = 2*2*2*2*2*3
Crossrefs
Programs
-
Mathematica
prifacs[n_]:=If[n==1,{},Flatten[ConstantArray@@@FactorInteger[n]]]; Select[Range[100],Floor[Mean[prifacs[#]]]==2&]