Today's (10/23) xdle crashes with 499. (fake confusion) Hmm, I wonder what this could mean... (hey, it's my first 1-guess win!)
Sadly, I noticed that there were no posts about it after it crashed, so I went with 498 instead of 500 on the theory that people were slightly more likely to guess 501 over 497 and encounter the bug...or that someone would get it in 1 and post about it. I'm not sure how many people are playing.
I'll keep my eyes open for your theory. I didn't get the impression that's always the case, but I may have missed it.
> Which means it is also 499 +n * 7 where n mod 4 = 1
Could you explain how you came to this conclusion? I understood the rest, just having a hard time figuring out how you used modular arithmetic here.
That's basically a fancy way of saying I needed numbers where (x - 499) was divisible by 7 and where x was divisible by 2 and not 4. So, since 744 was 499 + 35 * 7, I needed numbers that were 499 + n * 7, where n was 33, 29, 25, 21, 17, 13, 9, 5, or 1. When n was 33, that makes x = 730, which is divisible by 2 and not 4.
Put another way, starting at 744, the next smaller number that is divisible by 2 and where (x - 499) is divisible by 7, is 744 - 14 = 730. From that point, the numbers that have that property occur at intervals of 28...702, 674, etc..
Mentally, I didn't think of it as n mod 4 = 1. Instead, I saw that n = 33 was my starting point and started decrementing by 4s, eliminating any values of n that had a prime factor more than 7.