A381435 Numbers appearing more than once in A381431 (section-sum partition of prime indices).
5, 7, 11, 13, 17, 19, 23, 25, 26, 29, 31, 34, 37, 38, 39, 41, 43, 46, 47, 49, 51, 52, 53, 57, 58, 59, 61, 62, 65, 67, 68, 69, 71, 73, 74, 76, 79, 82, 83, 85, 86, 87, 89, 91, 92, 93, 94, 95, 97, 101, 103, 104, 106, 107, 109, 111, 113, 115, 116, 117, 118, 119
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 5: {3} 7: {4} 11: {5} 13: {6} 17: {7} 19: {8} 23: {9} 25: {3,3} 26: {1,6} 29: {10} 31: {11} 34: {1,7} 37: {12} 38: {1,8} 39: {2,6} 41: {13} 43: {14} 46: {1,9} 47: {15} 49: {4,4} 51: {2,7} 52: {1,1,6}
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; egs[y_]:=If[y=={},{},Table[Total[Select[Union[y],Count[y,#]>=i&]],{i,Max@@Length/@Split[y]}]]; Select[Range[100],Count[Times@@Prime/@#&/@egs/@IntegerPartitions[Total[prix[#]]],#]>1&]
Comments