What is the smallest positive integer with exactly 17 positive divisors?
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.
Wow, what an amazing puzzle to tease coworkers, and an unexpected insight into the NT! I never looked into the number of divisors before, and the amazing facts pop out immediately:
(1) the number of divisors of
n
,
d
(
n
)
=
2
iff
n
is a prime; generalizing,
(2) every divisor is a product of 0 to
k
of every factor of
n
with the multiplicity
k
, so for the factoring
n
=
∏
p
i
k
i
, every divisor is a
∏
p
i
{
0
,
.
.
.
,
k
i
}
, and, since any combination of the prime factors yields a unique divisor,
d
(
n
)
=
∏
(
k
i
+
1
)
, which is, curiously,
(3) odd iff
n
is a square (all terms in the product are odd iff all
k
are even, i.e.
n
is a square).
(4) Also,
d
(
n
)
=
3
iff
n
is a square of a prime (divisors being
{
1
,
p
,
p
2
=
n
}
), and, generalizing,
(5)
d
(
n
)
=
k
+
1
if
n
is a
k
t
h
power of a prime; even stronger,
(6)
d
(
n
)
=
k
+
1
iff
n
is a
k
t
h
power of a prime and
d
(
n
)
itself is a prime, so that its computation in (2) is a unique factoring with a single term, which immediately yields a solution.
More stuff on topic:
https://oeis.org/A000005 - a lot of references there. The low OEIS sequence number 5, wow!
https://terrytao.wordpress.com/2008/09/23/the-divisor-bound/
https://terrytao.files.wordpress.com/2009/01/whatsnew.pdf, p. 59: same as above, expanded.
For a little numeric fun, following the Tao's paper, the mean M ( N ) = N 1 n = 1 + s ∑ N + s d ( n ) ln n (with a small s = 1 0 0 0 0 to offset the likely irregularities in the range of small n ) grows, albeit excruciatingly slowly: for N = { 1 , 2 , 5 , 1 0 , 2 0 , 5 0 , 1 0 0 } × 1 0 6 , M ( N ) = { 1 . 9 3 1 , 1 . 9 8 2 , 2 . 0 4 9 , 2 . 0 9 9 , 2 . 1 4 7 , 2 . 2 1 0 , 2 . 2 6 1 } . The log-log mean, M ′ ( N ) = N 1 n = 1 + s ∑ N + s d ( n ) ln ln n , on the other hand, falls as the N grows: for N = { 1 , 3 , 1 0 , 3 0 } × 1 0 6 , M ′ ( N ) = { 0 . 3 8 3 5 4 8 , 0 . 3 8 0 5 6 3 , 0 . 3 7 7 1 0 7 , 0 . 3 7 3 8 8 9 } .
If N = 2 a 1 ⋅ 3 a 2 ⋯ p n a n , the number of divisors = ( a 1 + 1 ) ⋅ ( a 2 + 1 ) ⋯ ⋅ ( a n + 1 ) . Since 1 7 is prime it cannot be factorised as a product of two numbers other than 1 × 1 7 . Thus, to have the smallest possible value, we assign 1 7 = a 1 + 1 and 1 = a 2 + 1 . ⟹ a 1 = 1 6 , a 2 = 0 .
∴ N = 2 ( 1 6 ) ⋅ 3 ( 0 ) = 2 1 6 = 6 5 5 3 6
I like how you have periodically solved it
Factors of 17 = 17 and 1
Subtract 1 from each factor = 16 and 0 = 16
2 1 6 = 6 5 5 3 6
17 being a prime number of divisors, the only solution is that smallest number be 2^16 giving answer as 17.
The fact that 17 is odd tells you that the answer is a square; but it doesn't immediately follow that it is a power of two.
For instance, the smallest number with 15 divisors is 144, not 2 1 4 = 1 6 3 8 4 .
Log in to reply
I made an error while typing, I should have said that 17 being a prime number instead of an odd number.
Problem Loading...
Note Loading...
Set Loading...
If the prime number decomposition of a number N is N = p 1 e 1 ⋅ p 2 e 2 ⋯ , then every divisor d ∣ N has the form d = p 1 a 1 ⋅ p 2 a 2 ⋯ with 0 ≤ a i ≤ e i . There are δ ( N ) = ( e 1 + 1 ) ⋅ ( e 2 + 1 ) ⋯ ways to choose the exponents a i .
Now we have δ ( N ) = 1 7 . Since 17 is prime, we can only have one prime p 1 and e 1 + 1 = 1 7 . Thus N = p 1 1 6 . The smallest possible choice for p 1 is 2, so N = 2 1 6 = 6 5 5 3 6 .