Answer:
Explanation:
I think the easiest way to solve this problem is by brute force: trial and error.
We must find numbers that when divided by
- 4 leave 3 (4n + 3)
- 5 leave 3 (5n + 3)
- 6 leave 1 (6n + 1)
Here is a list of multiples of the integer n that satisfy the three conditions.

Check:

OK .