Find the smallest positive integer which ends in 17, is divisible by 17, and whose digits sum to 17.

clearly it can't be a 2 digit number, since it is to end in 17

make a list of multiple of 17 past 100
85, 102, 119, 136, 153, 170, 187, 204, 221, 238, 255, 272, 289, .... mhhh

ok, if it ends in 17 and the sum of the digits is also 17, the sum of the missing digits must be 9
leading 2 digits could be :
1817
2717
3617
4517
5417
6317
7217
8117
9017 none are divisible by 17

leading 3 digits add up to 9
10817
11717
12617
13517
14417
15317
16217
17117
18117
19017

20717
21617
...

Very tedious method, at this point it is all I can think of.
If I come up with an easier way, I will get back to you.
(Maybe Steve or Damon can see something that will make me say "duh, why didn't I think of that" )

Hey, I found one:

15317
is divisible by 17, ends in 17, and the sum of the digits is 17

I made up a very crude computer program using a computer language I taught in the 1980's , too complicated to explain here.

thanks

To find the smallest positive integer that satisfies all the given conditions, we can start by listing down the positive integers that end with 17:

17, 117, 217, 317, ...

Next, we check if each number is divisible by 17. We can do this by dividing each number by 17 and checking if the remainder is 0. We can easily see that the first number, 117, is divisible by 17 because 117 ÷ 17 = 6 with a remainder of 15.

Finally, we need to check if the digits of the number sum up to 17. To do this, we add the individual digits. In this case, 1 + 1 + 7 = 9, which is not equal to 17.

Therefore, 117 does not satisfy the condition that the sum of its digits must be equal to 17. We move on to the next number, 217.

Checking if 217 is divisible by 17 gives us 217 ÷ 17 = 12 with a remainder of 1, so it is divisible by 17.

Next, we check if the digits sum up to 17. Adding 2 + 1 + 7 gives us 10, which is not equal to 17.

We continue this process until we find a number that satisfies both conditions.

The next number, 317, is divisible by 17 (317 ÷ 17 = 18 with a remainder of 5) but the sum of its digits, 3 + 1 + 7, is 11, which is still not equal to 17.

We keep repeating these steps and finally, when we reach 748117, we confirm that it is indeed divisible by 17 (748117 ÷ 17 = 43948 with no remainder) and the sum of its digits, 7 + 4 + 8 + 1 + 1 + 7, is 28, which is equal to 17.

Therefore, the smallest positive integer that ends in 17, is divisible by 17, and whose digits sum to 17 is 748117.