OFFSET
1,27
EXAMPLE
The a(n) factorizations for n = 27, 84, 108, 180, 252, 360, 432:
27 2*6*7 2*6*9 4*5*9 4*7*9 5*8*9 6*8*9
3*3*3 3*4*7 3*4*9 2*2*45 6*6*7 2*4*45 2*8*27
2*2*21 2*2*27 2*6*15 2*2*63 3*8*15 4*4*27
2*2*3*3*3 3*4*15 2*6*21 4*6*15 2*2*2*6*9
2*2*3*3*5 3*4*21 2*12*15 2*2*3*4*9
2*2*3*3*7 2*2*2*5*9 2*2*2*2*27
2*3*3*4*5 2*2*2*2*3*3*3
2*2*2*3*15
MATHEMATICA
facs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facs[n/d], Min@@#>=d&]], {d, Rest[Divisors[n]]}]];
Table[Length[Select[facs[n], OddQ[Length[#]]&&OddQ[Max@@#]&]], {n, 100}]
CROSSREFS
The case of odd length only is A339890.
The case of all odd factors is A340102.
The version for partitions is A340385.
The version for prime indices is A340386.
The case of odd maximum only is A340831.
Positions of zeros include A340854.
Positions of nonzero terms are included in A340855.
A024429 counts set partitions of odd length.
A061395 gives maximum prime index.
A067659 counts strict partitions of odd length.
A316439 counts factorizations by sum and length.
A340101 counts factorizations (into odd factors = of odd numbers).
A340832 counts factorizations whose least part is odd.
A340854 lack a factorization with odd minimum.
A340855 have a factorization with odd minimum.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 25 2021
STATUS
editing