Ive been asked to find how many ways can we split a group of n numbers: {1,2.....n} to 3 groups. Assume that the groups are identical, means for example that the partition of all the numbers to one group is counted only once.
My solution at first was 3^n / 3! but this isn't true.