The number of ways that a number can be written as the sum of positive integers? I assume that you mean without ordering.
So we have:
N(0)=0
N(1)=1 (1)
N(2)=2 (1+1,2)
N(3)=3 (1+1+1,1+2,3)
N(4)=5 (1+1+1+1,1+1+2,1+3,2+2,4)
N(5)=7 (1+1+1+1+1,1+1+1+2,1+1+3,1+2+2,1+4,2+3,5)
N(6)=10(1+1+1+1+1+1,1+1+1+1+2,1+1+1+3,1+1+2+2,1+1+4
1+2+3,1+5,2+2+2,2+4,6)
P(0)=0
P(1)=0
P(2)=1 (2)
P(3)=1 (3)
P(4)=1 (2+2)
P(5)=2 (2+3,5)
P(6)=2 (2+2+2,3+3)
P(7)=3 (2+2+3,2+5,7)
P(8)=3 (2+2+2+2,2+3+3,3+5)
P(9)=4 (2+2+2+3,2+2+5,2+7,3+3+3)
Obviously P(n)<N(n) and
\lim_{n \rightarrow \infty} \frac{P(n)}{N(n)}=0