We define a positive integer to be smooth if there exist a representation of real numbers such that . Find the sum of first 2015 smallest smooth number.
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.
smallest possible n is 1,
if n=1 we need to solve
x+y=2
xy=2
x(2-x)=2
2x-x^2=2
x^2-2x+2=0
discriminant is 4-8=-4
thus there are no real solutions
If n>1 then let
a1=2 a2=n and all remaining terms equal 1
then their sum is
2+n+(n-2) = 2n
and their product is
2*n*(1)^(n-2) = 2n
thus for any n>1 there exists a solutions
thus our sum is simply
2*(1+2+...+2016)-2
2*2016*2017/2-2
2016*2017-2
4066270