During my calculations I ended up at the following combinatorial problem: In how many way can we write the integer $n$ as the sum of $k$ non-negative integers, each different to one, i.e. calculate $$\sum_{n_1+n_2+\dots+n_k=n,n_i\ne1}1$$ for non-negative integers $n_i\in\{0,2,3,\dotsc,n\}$, i.e. with $n_i\ne 1$. In fact, I am interested in the order of this sum as $k\to\infty$.
Without the additional assumption $n_i\ne1$, this is a well known problem (see e.g. Number of ways to write n as a sum of k nonnegative integers) and the result is $\binom{n+k−1}{n} = O(k^n)$. How does the order change for my sum? I expect it to be much smaller.