A384006 Heinz numbers of Look-and-Say partitions without distinct multiplicities (non Wilf).
216, 1000, 1296, 2744, 3375, 7776, 9261, 10000, 10648, 17576, 32400, 35937, 38416, 38880, 39304, 42875, 46656, 50625, 54000, 54432, 54872, 59319, 63504, 81000, 85536, 90000, 97336, 100000
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 216: {1,1,1,2,2,2} 1000: {1,1,1,3,3,3} 1296: {1,1,1,1,2,2,2,2} 2744: {1,1,1,4,4,4} 3375: {2,2,2,3,3,3} 7776: {1,1,1,1,1,2,2,2,2,2} 9261: {2,2,2,4,4,4} 10000: {1,1,1,1,3,3,3,3} 10648: {1,1,1,5,5,5} 17576: {1,1,1,6,6,6} 32400: {1,1,1,1,2,2,2,2,3,3} 35937: {2,2,2,5,5,5} 38416: {1,1,1,1,4,4,4,4} 38880: {1,1,1,1,1,2,2,2,2,2,3} 39304: {1,1,1,7,7,7} 42875: {3,3,3,4,4,4} 46656: {1,1,1,1,1,1,2,2,2,2,2,2} 50625: {2,2,2,2,3,3,3,3} 54000: {1,1,1,1,2,2,2,3,3,3} 54432: {1,1,1,1,1,2,2,2,2,2,4} 54872: {1,1,1,8,8,8} 59319: {2,2,2,6,6,6} 63504: {1,1,1,1,2,2,2,2,4,4} 81000: {1,1,1,2,2,2,2,3,3,3} 85536: {1,1,1,1,1,2,2,2,2,2,5} 90000: {1,1,1,1,2,2,3,3,3,3} 97336: {1,1,1,9,9,9} 100000: {1,1,1,1,1,3,3,3,3,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}]]]]; Select[Range[1000],disjointFamilies[prix[#]]!={}&&!UnsameQ@@Last/@FactorInteger[#]&]
Comments