A382775 Least number appearing n times in A048767 (rank of Look-and-Say partition of prime indices).
6, 1, 8, 32, 64, 128, 256, 6144, 512, 27648, 1024, 73728, 2048, 147456, 165888, 4096, 248832, 196608, 8192, 497664, 1119744, 393216, 16384, 2239488
Offset: 0
Examples
The terms together with their prime indices begin: 6: {1,2} 1: {} 8: {1,1,1} 32: {1,1,1,1,1} 64: {1,1,1,1,1,1} 128: {1,1,1,1,1,1,1} 256: {1,1,1,1,1,1,1,1} 6144: {1,1,1,1,1,1,1,1,1,1,1,2} 512: {1,1,1,1,1,1,1,1,1} 27648: {1,1,1,1,1,1,1,1,1,1,2,2,2} 1024: {1,1,1,1,1,1,1,1,1,1} 73728: {1,1,1,1,1,1,1,1,1,1,1,1,1,2,2} 2048: {1,1,1,1,1,1,1,1,1,1,1} 147456: {1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2} 165888: {1,1,1,1,1,1,1,1,1,1,1,2,2,2,2} 4096: {1,1,1,1,1,1,1,1,1,1,1,1} 248832: {1,1,1,1,1,1,1,1,1,1,2,2,2,2,2}
Crossrefs
Programs
-
Mathematica
stp[y_]:=Select[Tuples[Select[IntegerPartitions[#], UnsameQ@@#&]&/@y],UnsameQ@@Join@@#&]; z=Table[Length[stp[Last/@FactorInteger[n]]],{n,10000}]; mnrm[s_]:=If[Min@@s==1,mnrm[DeleteCases[s-1,0]]+1,0]; Table[Position[z,k][[1,1]],{k,0,mnrm[z+1]-1}]
Comments