All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Numbers > Sequences
Eleven as mandatory divider (Posted on 2021-05-24) Difficulty: 2 of 5
I have found in one of the Russian high-school competitions a relatively easy puzzle & to make it more challenging replaced a certain number by N.
The modified text runs as follows:

Prove that among N sequential positive integers there always exists a number whose s.o.d. is a multiple of 11.
a. Restore N.
b. Now prove the statement.

No Solution Yet Submitted by Ady TZIDON    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts Part a. (but no proof) | Comment 1 of 5
From a computer run, N appears to be 29.
{Edit:  nope, this is incorrect, see Charlie's comment}
For a list of integers with s.o.d. being a multiple of 11, the differences between sequential numbers in that list is limited to the following values:
[3, 5, 7, 9, 12, 14, 16, 18, 21, 23, 25, 27, 29]

But I don't have a proof.


---- Python code ----
lastFound = 0
maxDiff = 0
diffList = []
for i in range(1,1000000):
    if sod(i)%11 == 0:
        diff = i - lastFound
        if diff not in diffList:
            diffList.append(diff)
        lastFound = i
        maxDiff = max(maxDiff,diff)
print(maxDiff)
print(sorted(diffList))

Edited on May 24, 2021, 12:27 pm
  Posted by Larry on 2021-05-24 10:46:52

Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (1)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (17)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information