3 n + 3 n − 1 + 3 n − 2 + 3 n − 3 + 3 n − 4
For a certain n the expression above has 5 1 7 8 positive divisors (inclusive of 1 and itself), compute n .
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.
Exactly how it's done! Nice solution Brian!!
That title might be too much of a hint though :P
I disagree. I always associate Ramanujan with hideous complexity in math problems, and, to me, a mathematician's name is not a hint to solving anything.
@Whitney Clark – This might seem a bit absurd but i feel that it was very obvious as to what the answer would be because our is normal hymnal tendency to see a pattern where there isn't any
Hahaha it's true, but I didn't find anything better:P
Thanks. I always like to see 1 7 2 9 emerge as an answer to a question. :)
I thought about 1729 just because of the headline haha, but I did the same way you did, Brian. Nice solution.
Hi,
I did everything just like you and reached only: (n - 3) = 5178. Why is there the extra 3? Thanks in advance!
When the prime factorization of a positive integer N is
p 1 a 1 ∗ p 2 a 2 ∗ p 3 a 3 ∗ . . . . . ∗ p k a k
then the number of divisors of N will be
( a 1 + 1 ) ∗ ( a 2 + 1 ) ∗ ( a 3 + 1 ) ∗ . . . . . . . . ∗ ( a k + 1 ) .
So in this case, as N = 3 n − 4 ∗ 1 1 2 the number of divisors will be
( ( n − 4 ) + 1 ) ∗ ( 2 + 1 ) = ( n − 3 ) ∗ 3 ,
as found in my solution. Hope that helps. :)
Ahaaaa... Thanks a lot for helping :))
Because of 1 1 2 .
Let 3 n = x so the equation becomes:
x + 3 x + 9 x + 2 7 x + 8 1 x
Which is 8 1 1 2 1 x ⟶ 1 1 2 ( 3 n − 4 )
Since 1 1 and 3 are both prime, we can now find the number of positive divisors.
Using Euler's method of finding the number of positive divisors, add 1 to each exponent in the prime factored form and multiply them:
( 2 + 1 ) ( n − 4 + 1 ) = 5 1 7 8 ⟶ n = 1 7 2 9
did it the same way
num = 3^(n-4) + 3^(n-3) + 3^(n-2) + 3^(n-1) + 3^n
num = 3^n-4 ( 1+3+9+27+81)
num = 3^(n-4 )(121)
It follows from prime factorisation that :
the factors of 121 are 11,121 (i.e 2 factors, excluding 1)
and that of 3^(n-4) are 3,3^2...........3^n-4 (i.e n-4 factors, excluding 1)
Factor combinations are made by taking one factor from each of the above set
combinations = 2(n-4) = 2n-8
taking the factors themselves from the 2 set and the #1 , we get
n-4 + 2 + 1
Total number of factors = 2n-8+n-4+2+1 = 3n-9
5178 = 3n-9
implies n = 1729
PS - 1729 is the Ramanujam number
1729 = 10^3 + 9^3
1729 = 12^3 + 1^3
Problem Loading...
Note Loading...
Set Loading...
The expression can be written as
N = 3 n − 4 ∗ ( 3 4 + 3 3 + 3 2 + 3 1 + 3 0 ) = 3 n − 4 ∗ 1 2 1 = 3 n − 4 ∗ 1 1 2 .
So as both 3 and 1 1 are prime, we can conclude that N has
[ ( n − 4 ) + 1 ] ∗ ( 2 + 1 ) = 3 ∗ ( n − 3 ) divisors. Thus
3 ∗ ( n − 3 ) = 5 1 7 8 ⟹ n − 3 = 1 7 2 6 ⟹ n = 1 7 2 9 .