Unrelated, but curious to know what you did today (10/24). Today, though I did not use this strategy, is a particularly good example of how (512, 243) is occasionally useful. (FWIW, my guesses were (499,243,151,192))
I ended up getting lucky based on somewhat bad thinking. For my initial guess, I was just going to split the prime numbers under 499 in half. I ended up overestimating how biased those prime numbers were toward lower numbers. I estimated the median prime candidate would be 191 or 193. It turns out that it's 223 (48th prime of 95 under 500). 191 is the 43rd.
I went with 308 because it was "good enough" both in terms of being towards (what I thought was) the median and 308 = 2² * 7 * 11 having 12 factors.
x<308; x and 308's largest divisor is 4.
There were still too many candidates left for me to bother listing them. Since I was now looking at prime numbers between 191 & 499, I knew those were fairly evenly distributed. My goals at this point were to find a number where (499-x) was prime and I wanted many non-7 and non-11 factors. I wanted it to be divisible by 8, if not 16.
I started at 152 and worked my way up:
- 152 = 8 * 19. 347 is prime, but I'm only adding another 2 and a 19 as prime factors.
- 160 - 339 isn't prime.
- 168 = 8 * 3 * 7. Divisible by 7, not a candidate.
- 176 - 323 isn't prime.
- 184 - 315 isn't prime.
- 192 = 2⁶ * 3. 307 is prime. 14 factors is decent.
Good enough. Quickly check under 152:
- 144 - 355 isn't prime.
- 136 - 363 isn't prime.
Based on that, I went with 192 and got lucky.
Had I gone 499 -> 243 ("x<243; x and 243's largest divisor is 3") my next guess would have been 120. 120 splits the remaining numbers evenly, has more factors (16) than any number smaller than it. 379 is prime. 120 generates the "largest divisor is 24," which is lovely.
144 and 216 aren't valid because they're divisible by 9. 240 isn't valid because it's divisible by 120. 168 and 192 are the only options left. 499 + 168 = 667 = 23 * 29. That seems like it'd generate a "(x+499)'s largest prime divisor is 29" clue.
Meanwhile, 499 + 192 = 691, which is prime.
For that reason, between those two candidates, I'd pick 192.
[ETA: I just tried 475 when 192 was the solution (475 + 192 = 667) and did get "(x+475)'s largest prime divisor is 29" as I suspected. My logic for choosing 192 over 168 was correct.]