A325264 Numbers whose omega-sequence sums to 7.
30, 36, 42, 64, 66, 70, 78, 100, 102, 105, 110, 114, 130, 138, 154, 165, 170, 174, 182, 186, 190, 195, 196, 222, 225, 230, 231, 238, 246, 255, 258, 266, 273, 282, 285, 286, 290, 310, 318, 322, 345, 354, 357, 366, 370, 374, 385, 399, 402, 406, 410, 418, 426
Offset: 1
Keywords
Examples
The sequence of terms together with their prime indices and omega-sequences begins: 30: {1,2,3} (3,3,1) 36: {1,1,2,2} (4,2,1) 42: {1,2,4} (3,3,1) 64: {1,1,1,1,1,1} (6,1) 66: {1,2,5} (3,3,1) 70: {1,3,4} (3,3,1) 78: {1,2,6} (3,3,1) 100: {1,1,3,3} (4,2,1) 102: {1,2,7} (3,3,1) 105: {2,3,4} (3,3,1) 110: {1,3,5} (3,3,1) 114: {1,2,8} (3,3,1) 130: {1,3,6} (3,3,1) 138: {1,2,9} (3,3,1) 154: {1,4,5} (3,3,1) 165: {2,3,5} (3,3,1) 170: {1,3,7} (3,3,1) 174: {1,2,10} (3,3,1) 182: {1,4,6} (3,3,1) 186: {1,2,11} (3,3,1) 190: {1,3,8} (3,3,1) 195: {2,3,6} (3,3,1) 196: {1,1,4,4} (4,2,1)
Crossrefs
Programs
-
Mathematica
omseq[n_Integer]:=If[n<=1,{},Total/@NestWhileList[Sort[Length/@Split[#]]&,Sort[Last/@FactorInteger[n]],Total[#]>1&]]; Select[Range[100],Total[omseq[#]]==7&]
Comments