I'm interested in finding out whether there exists a prime partition of a given positive integer $N>1$ such that the partition has specific number of parts.
For instance, as given in another question, $N=12$ has seven partitions: $\{2, 2, 2, 2, 2, 2\}$, $\{2, 2, 2, 3, 3\}$, $\{3, 3, 3, 3\}$, $\{2, 2, 3, 5\}$, $\{2, 5, 5\}$, $\{2, 3, 7\}$, and $\{5, 7\}$. So there exist partitions of length 2, 3, 4, 5, 6 and no partition of length 1 (obviously).
So given an integer $N$ and a partition length ($\leq N/2$), is there an effective way of constructing or verifying the existence of a prime partition of the given length (particularly for large values of $N$, so simply computing primes up to $N$ and searching is not an option)?
I've seen the formulae on computing the total number of prime partitions (e.g. Prime Partition and http://programmingpraxis.com/2012/10/19/prime-partitions/), but I see no clear way of relating this to specific partition sizes.
Thanks.