How many ways are there to partition a block of 9 into blocks of sizes 1, 2, and 3?
So lets say I have [XXXXXXXXX]. How many ways can I 'fill' it with [X], [XX], and [XXX]
Some ways I could do it is: [X][X][X][X][X][X][X][X][X] (9 1's) [XX][XXX][X][XXX] (2-3-1-3)
Order matters, so one 3 followed by three 2's would be different from 3 2's then 1 3.