Hi,
I would try to get a balance between number of cores and clock speed. I have a workstation with 2xE5 v3 processors, 8 cores each one. This machine is very useful when you have A LOT of data to process. It's specially useful to execute several BatchPreprocessing instances, I usually run 7-8 PixInsight intances and execute in each one a BPP instance. That way, you optimize the multithreading and get the maximum from the computer; I can process 20-30 GB of data in a very short time. But this is a very specific work, which is convenient to me.
For postprocessing an image, you'll have some handicaps if you use many cores. Think that each thread should be initialized and this takes some time. You'll never have the same performance increase by increasing from 2 to 4 cores than 4 to 8. In my case is even worse because I have two CPUs, each one with its own memory, and it's much slower to access to a data block that belongs to the other CPU (actually, I get much better performance if I simply disable the multi-CPU architecture - AKA NUMA - and letting the operating system consider both CPUs as a single one).
On the other hand, you'll see that many processes cannot be parallelized. A good example is LinearFit, or calculating the median value of an image. This processes depend exclusively on the speed of a single core.
Last, I think you should also consider if you're going to do large mosaics. In that case, I would recommend a computer with two CPUs. When my images are very big (let's say 4 GB), I routinely get swap speed around 12 GB/s. This is because the image is saved in parallel in the RAM modules of both CPUs. This can be a good advantage if you work with this kind of images.
Regards,
Vicent.