A383707 Heinz numbers of maximally refined strict integer partitions.
1, 2, 3, 6, 10, 14, 15, 30, 42, 66, 70, 78, 105, 110, 182, 210, 330, 390
Offset: 1
Examples
The terms together with their prime indices begin: 1: {} 2: {1} 3: {2} 6: {1,2} 10: {1,3} 14: {1,4} 15: {2,3} 30: {1,2,3} 42: {1,2,4} 66: {1,2,5} 70: {1,3,4} 78: {1,2,6} 105: {2,3,4} 110: {1,3,5} 182: {1,4,6} 210: {1,2,3,4} 330: {1,2,3,5} 390: {1,2,3,6}
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; nonsets[y_]:=If[Length[y]==0,{},Rest[Subsets[Complement[Range[Max@@y],y]]]]; Select[Range[30],SquareFreeQ[#]&&With[{y=prix[#]},Intersection[y,Total/@nonsets[y]]=={}]&]
Comments