A363265 Number of integer factorizations of n with a unique mode.
0, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, 4, 1, 2, 1, 2, 1, 1, 1, 3, 2, 1, 2, 2, 1, 1, 1, 5, 1, 1, 1, 4, 1, 1, 1, 3, 1, 1, 1, 2, 2, 1, 1, 6, 2, 2, 1, 2, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 2, 7, 1, 1, 1, 2, 1, 1, 1, 8, 1, 1, 2, 2, 1, 1, 1, 6, 4, 1, 1, 3, 1, 1, 1
Offset: 1
Keywords
Examples
The a(n) factorizations for n = 2, 4, 16, 24, 48, 72: (2) (4) (16) (24) (48) (72) (2*2) (4*4) (2*2*6) (3*4*4) (2*6*6) (2*2*4) (2*2*2*3) (2*2*12) (3*3*8) (2*2*2*2) (2*2*2*6) (2*2*18) (2*2*3*4) (2*2*2*9) (2*2*2*2*3) (2*2*3*6) (2*3*3*4) (2*2*2*3*3)
Crossrefs
A089723 counts constant factorizations.
Programs
-
Mathematica
facs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&, Select[facs[n/d],Min@@#>=d&]],{d,Rest[Divisors[n]]}]]; modes[ms_]:=Select[Union[ms],Count[ms,#]>=Max@@Length/@Split[ms]&]; Table[Length[Select[facs[n],Length[modes[#]]==1&]],{n,100}]
Comments