OFFSET
1,1
COMMENTS
The smallest number that has at least 5 partitions is 185.
EXAMPLE
118 is in this sequence because it has 4 partitions (14,50,54), (15,40,63), (18,30,70), and (21,25,72) with the same product 37800.
MATHEMATICA
Select[Range[3, 300], Max[Transpose[Tally[Apply[Times, IntegerPartitions[#, {3}], {1}]]][[2]]] >= 4 &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Tanya Khovanova, Sep 09 2022
STATUS
approved