A383088 Numbers whose multiset of prime indices does not have all equal run-sums.
6, 10, 14, 15, 18, 20, 21, 22, 24, 26, 28, 30, 33, 34, 35, 36, 38, 39, 42, 44, 45, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 60, 62, 65, 66, 68, 69, 70, 72, 74, 75, 76, 77, 78, 80, 82, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 102, 104, 105
Offset: 1
Keywords
Examples
The prime indices of 36 are {1,1,2,2}, with run-sums (2,4), so 36 is in the sequence, even though we have the multiset partition {{1,1},{2},{2}} with equal sums. The terms together with their prime indices begin: 6: {1,2} 10: {1,3} 14: {1,4} 15: {2,3} 18: {1,2,2} 20: {1,1,3} 21: {2,4} 22: {1,5} 24: {1,1,1,2} 26: {1,6} 28: {1,1,4} 30: {1,2,3} 33: {2,5} 34: {1,7} 35: {3,4} 36: {1,1,2,2} 38: {1,8} 39: {2,6} 42: {1,2,4} 44: {1,1,5} 45: {2,2,3} 46: {1,9}
Crossrefs
Programs
-
Mathematica
Select[Range[100], !SameQ@@Cases[FactorInteger[#],{p_,k_}:>PrimePi[p]*k]&]
Comments