There are consecutive odd numbers, each of which is a multiple of , , , or .
What is one possible remainder when the largest of these numbers is divided by ?
Set up the run and count how much covering work each prime can do. Write the six numbers as
Every one must be divisible by at least one of . Among six consecutive odd numbers, the multiples of are spaced apart, so can cover at most two of them; covers at most two (spacing ); and cover at most one each. That gives a maximum of — exactly six. So the covering must be perfectly tight, with hitting two, hitting two, and and each hitting exactly one, and no overlaps wasted.
Search for an actual run rather than guessing. The tightness above tells you a solution is rare, so a direct search is the reliable route. Scanning odd upward and testing whether all six of have a factor in , the first success is :
Verify each member of the run. Checking one divisor per number:
The pattern matches the count exactly: covers and , covers and , covers , and covers .
Divide the largest number by 11. The largest is , and
since and . So the remainder is .
Confirm this is genuinely possible, and see the whole picture. A search over all odd starting values below found such runs, and the largest member's remainder mod was always either (in runs, e.g. starting at ) or (in runs, e.g. starting at ). No other remainder occurs, so the valid answers are exactly and , and is one of them.
Need to solve a different problem like this? Open the solver →