A383531 Heinz numbers of integer partitions that do not have distinct multiplicities (Wilf) or distinct nonzero 0-appended differences (conjugate Wilf).
6, 21, 30, 36, 42, 60, 65, 66, 70, 78, 84, 90, 102, 105, 110, 114, 120, 126, 132, 133, 138, 140, 150, 154, 156, 165, 168, 174, 180, 186, 198, 204, 210, 216, 220, 222, 228, 231, 234, 238, 240, 246, 252, 258, 264, 270, 273, 276, 280, 282, 286, 294, 300, 306, 308
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} 65: {3,6} 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
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],!UnsameQ@@Length/@Split[prix[#]] && !UnsameQ@@Length/@Split[conj[prix[#]]]&]
Comments