A332291 Heinz numbers of widely totally strongly normal integer partitions.
1, 2, 4, 6, 8, 16, 18, 30, 32, 64, 128, 210, 256, 450, 512, 1024, 2048, 2250, 2310, 4096, 8192, 16384, 30030, 32768, 65536, 131072, 262144, 510510, 524288
Offset: 1
Examples
The sequence of all widely totally strongly normal integer partitions together with their Heinz numbers begins: 1: () 2: (1) 4: (1,1) 6: (2,1) 8: (1,1,1) 16: (1,1,1,1) 18: (2,2,1) 30: (3,2,1) 32: (1,1,1,1,1) 64: (1,1,1,1,1,1) 128: (1,1,1,1,1,1,1) 210: (4,3,2,1) 256: (1,1,1,1,1,1,1,1) 450: (3,3,2,2,1) 512: (1,1,1,1,1,1,1,1,1) 1024: (1,1,1,1,1,1,1,1,1,1) 2048: (1,1,1,1,1,1,1,1,1,1,1) 2250: (3,3,3,2,2,1) 2310: (5,4,3,2,1) 4096: (1,1,1,1,1,1,1,1,1,1,1,1)
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; totnQ[ptn_]:=Or[ptn=={},Union[ptn]=={1},And[Union[ptn]==Range[Max[ptn]],GreaterEqual@@Length/@Split[ptn],totnQ[Length/@Split[ptn]]]]; Select[Range[10000],totnQ[Reverse[primeMS[#]]]&]
Comments