OFFSET
1,1
COMMENTS
First differs from A319238 in having 300.
MATHEMATICA
strfacs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[strfacs[n/d], Min@@#>d&]], {d, Rest[Divisors[n]]}]];
Select[Range[100], EvenQ[Length[strfacs[#]]]&]
CROSSREFS
The version for integer partitions is A001560.
The version for strict integer partitions is A090864.
The version for set partitions appears to be A016789.
The non-strict version is A331051.
The version for primes (instead of evens) is A331201.
The odd version is A331230.
The least number with n strict factorizations is A330974(n).
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 12 2020
STATUS
approved