I also want to add that three more facotrs should be taken into account when doing a similar analysis.
Is the task memory intensive? I/O intensive? Programs that spend a lot of their time waiting for memory/disk/network accesses to finish do not benefit from higher frequency since processors are not the bottleneck. They do however benefit from parallelism since more requests can be fired in parallel and some of the latency can be hidden.
As someone already pointed out, take application scalability into account. If app only has 4 threads of concurrent execution, 6 cores won't help but higher freuqency may help.
The amount of serial code (inherent or accidental due to contention for critical section or load imbalance) can mean that higher frequency is better than more cores. When running serial code, the speed of the single core running the single thread is more important. This is derived from Ahmdahl's law.
Execution time with N cores = Time in Serial code + (Time in parallel code as 1 thread/N)
Now if parallel part is small already, then increasing N will only help a little. Say Time in parallel when run as 1 thread is 10s and time in serial part is 5s.
With 1 core , 15s.
With 2 cores, 10s,
With 4 cores, 7.5s,
With 5 cores, 7s
With 6 cores, 6.66s
Now instead, if we had 4 cores with 5% higher frequency,
Total time will be 7.5/1.05 = 7.14s. Thusm 6 cores seem faster, clearly!
Note: I assumed frequency perfectly translates into performance but this is often not the case due to memory and i/o accesses but it was fine for this analysis.
By the way, one interesting side note: The reason your 6 cores look better is because the two configurations are not comparable as their electric/heating requirements (from a running cost stand point) are not the same. The 6-core will cost more to buy, more to run, more to cool, etc and hence it is likely to provide higher performance.
@Joonas: Server apps can have critical sections, e.g., MySQL is full of them that make threads effectively serial when they contend for the critical section.