You can construct the partitions in a systematic way: take the partitions of $n-1$, and form two new sets: in blue, by appending $1$, in green by adding $1$ to the last element.
$$1\to(1)$$
$$2\to(1,1),(2)$$
$$3\to(1,1,1),(2,1),(1,2),(3)$$
$$4\to(1,1,1,\color{blue}1),(2,1,\color{blue}1),(1,2,\color{blue}1),(3,\color{blue}1)(1,1,\color{green}2),(2,\color{green}2),(1,\color{green}3),(\color{green}4)$$
The partitions so obtained are all different and they exhaust the partitions of $n$ (you find all the partitions of $n$ ending in $1$ and all the partitions of $n$ not ending in $1$, which must be partitions of $n-1$ when you deduce $1$). This establishes the recurrence
$$c_n=2c_{n-1}$$
and, for $n>0$,
$$c_n=2^{n-1}.$$
Then,
$$1+\frac12\sum_{n=1}^\infty\left(\frac25\right)^n.$$