A positive integer is said to be strange if it has an odd number of distinct positive divisors. Find the sum of all positive strange numbers less than or equal to 2016.
Details and Assumptions :
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Hi, what does INT mean? Integer?
Log in to reply
He means integral part of the number ,i.e,GIF(Greatest Integer Function).
Nice solution
Similar to mine Jessica :D
Let's take n = p 1 q 1 p 2 q 2 . . .
First, we know that the number of divisors of n is d ( n ) = ( q 1 + 1 ) ( q 2 + 1 ) . . . . But if d ( n ) in odd, that means that each of his factor is odd, so each of the q i is even and n can be expressed as a perfect square.
We see that : 4 4 2 < 2 0 1 6 < 4 5 2 Hence, we have to calculate the sum of all the squares from 1 to 4 4 . Let's apply the formula : i = 1 ∑ 4 4 i 2 = 6 4 4 × ( 4 4 + 1 ) × ( 2 × 4 4 + 1 ) = 2 9 3 7 0 Hence the solution.
Nice one, thanks.
Reminded that the formula for the number of distinct positive divisors of the positive integer n = ∏ l = 1 j p l k l is:
τ ( n ) = ∏ l = 1 j ( k l + 1 )
We know that τ ( n ) is odd, hence every single product term k l → j + 1 is odd. In other words:
k l → j + 1 = 2 y l → j − 1 for some integer y that describes k in correspondence
⇔ k l → j = 2 ( y l → j − 1 )
Now we can plug the according value of k l → j into the equation describing n as the product of primes on certain powers:
n = ∏ l = 1 j p l 2 ( y l − 1 )
⇒ n = ( ∏ l = 1 j p l y l − 1 ) 2
This suggests that n is a perfect square. Therefore, the answer to this problem is to find the sum of all squares that are under or equal to 2 0 1 6 .
Knowing that 4 4 2 ≤ 2 0 1 6 ≤ 4 5 2 , we find the sum:
∑ x = 1 4 4 x 2 = 6 4 4 ( 4 5 ) ( 8 9 ) = 2 9 3 7 0
Problem Loading...
Note Loading...
Set Loading...
For a positive integer, its divisors come in pairs (e.g. 1 2 = 1 × 1 2 = 2 × 6 = 3 × 4 ; 1 6 = 1 × 1 6 × 2 × 8 = 4 × 4 . ) .
For a "strange" number, one pair of divisors need to be in the same number, for example, 16 (as mentioned above, it has a "repetitive" 4 as a divisor).
This requires the number to be squared.
∵ INT ( 2 0 1 6 ) = 4 4 ,
∴ Sum required = ∑ r = 1 4 4 r 2 = 6 1 × 4 4 × ( 4 4 + 1 ) × ( 2 × 4 4 + 1 ) = 2 9 3 7 0 .