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

Home > Numbers
5 unknown digits (Posted on 2014-05-13) Difficulty: 4 of 5
Each of the three consecutive 3-digit numbers n, n+1, n+2 divides N=146,8XX,XXX, where each X represents a digit below 6 .


Please restore N,n.

See The Solution Submitted by Ady TZIDON    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution Python solution | Comment 2 of 5 |
(In reply to Solution by Jer)


for n in range(100,1000):
    k = n * (n+1) * (n+2) / 2
    if k > 146855555:
      break
    if 146800000/k != 146855555/k:
      NN = (146855555/k) * k
      chk = 0
      for i in list(str(NN))[4:]:
        if i > '5':
          chk = 1
          break
      if chk == 0:
        print n, NN

 

produces the same two results that Jer found, and one other:

100 146803500  123 146800500  195 146822130  
Edit: But that last one isn't valid - as Jer noted, 
dividing by 2 is valid if n is even.  
146822130 is not divisible by 196, so strike that 
off the list.   

Edited on May 13, 2014, 3:04 pm

Edited on May 13, 2014, 3:05 pm
  Posted by tomarken on 2014-05-13 15:01:18

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


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (5)
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