I want to find out the number of partitions which are strictly in decreasing order.
Eg. Partition of 4 is :
4
3 1
2 1 1
1 1 1 1
Here there's only one partition {3, 1} which is in strictly decreasing order, call this function f.I am interested in f(200)
I tried to list all possible partitions and search for the one which are in decreasing order, but it's too slow to work. I believe there is some analytical combinatorics that I'm missing.