A383517 Heinz numbers of integer partitions that are neither Look-and-Say nor section-sum partitions.
6, 21, 30, 36, 42, 60, 66, 70, 78, 84, 90, 102, 105, 110, 114, 120, 126, 132, 138, 140, 150, 154, 156, 165, 168, 174, 180, 186, 198, 204, 210, 220, 222, 228, 231, 234, 238, 240, 246, 252, 258, 264, 270, 273, 276, 280, 282, 286, 294, 300, 306, 308, 312, 315
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 6: {1,2} 21: {2,4} 30: {1,2,3} 36: {1,1,2,2} 42: {1,2,4} 60: {1,1,2,3} 66: {1,2,5} 70: {1,3,4} 78: {1,2,6} 84: {1,1,2,4} 90: {1,2,2,3} 102: {1,2,7} 105: {2,3,4} 110: {1,3,5} 114: {1,2,8} 120: {1,1,1,2,3}
Crossrefs
Programs
-
Mathematica
disjointFamilies[y_]:=Select[Tuples[IntegerPartitions/@Length/@Split[y]],UnsameQ@@Join@@#&]; prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; conj[y_]:=If[Length[y]==0,y,Table[Length[Select[y,#>=k&]],{k,1,Max[y]}]]; Select[Range[100],disjointFamilies[prix[#]]=={}&&disjointFamilies[conj[prix[#]]]=={}&]
Comments