A326291 Number of unsortable factorizations of n.
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0
Offset: 1
Keywords
Examples
The a(180) = 10 unsortable factorizations: (2*3*3*10) (5*6*6) (3*60) (2*3*30) (6*30) (2*9*10) (9*20) (3*3*20) (10*18) (3*6*10) Missing from this list are: (2*2*3*3*5) (2*2*5*9) (4*5*9) (2*90) (180) (2*3*5*6) (2*2*45) (4*45) (3*3*4*5) (2*5*18) (5*36) (2*2*3*15) (2*6*15) (12*15) (3*4*15) (3*5*12)
Crossrefs
Programs
-
Mathematica
facs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&,Select[facs[n/d],Min@@#>=d&]],{d,Rest[Divisors[n]]}]]; lexsort[f_,c_]:=OrderedQ[PadRight[{f,c}]]; primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Table[Length[Select[facs[n],!OrderedQ[Join@@Sort[primeMS/@#,lexsort]]&]],{n,100}]
Comments