For any integer n ≥ 1, let r(n) denote the number of different ways that the set [n] := {1, . . . , n} can be partitioned into disjoint non-empty subsets, the union of which is the entire set [n].
I need to first find r(3) and list all the ways it can be partitioned.
This part I did, r(3) = 5. Since the set {1, 2, 3} can be partitioned in 5 distinct ways: {{1}, {2}, {3}} ; {{1}, {2, 3}} ; {{2}, {1, 3}} ; {{3}, {1, 2}} ; & {{1, 2, 3}}.
Now I have to prove that, for all even integers n ≥ 2:
(n/2)^(n/2) ≤ r(n) ≤ n^n
I'm unsure of how to go about proving this?