A177697 Sums of 3 distinct primorials.
9, 33, 37, 38, 213, 217, 218, 241, 242, 246, 2313, 2317, 2318, 2341, 2342, 2346, 2521, 2522, 2526, 2550, 30033, 30037, 30038, 30061, 30062, 30066, 30241, 30242, 30246, 30270, 32341, 32342, 32346, 32370, 32550, 510513, 510517, 510518, 510541, 510542
Offset: 1
Examples
9 = 6+2+1 33 = 30+2+1 37 = 30+6+1 38 = 30+6+2 213 = 210+2+1
Programs
-
Mathematica
Take[Total/@Subsets[Join[{1},FoldList[Times,Prime[Range[10]]]],{3}]// Union,40] (* Harvey P. Dale, Nov 07 2017 *)
Comments