n = ⌊ m ⌋ + ⌊ 2 ! m ⌋ + ⌊ 3 ! m ⌋ + … + ⌊ k ! m ⌋ + …
For every natural number n , define S ( n ) to be the unique integer m (if it exists) which satisfies the equation above. Submit the value of S ( 3 4 3 8 ) as your answer.
Bonus: Does there exist a number k such that, for any non-negative integer n , at least one of S ( n + 1 ) , S ( n + 2 ) , … , S ( n + k ) exists?
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.
at m =3, [ 3 ( e − 1 ) ] = 5 , [ 3 ] + [ 3 / 2 ] + [ 3 / 6 ] + . . . = 4 and taking out ceiling is wrong, for example [ 2 1 ] + [ 2 1 ] = [ 2 1 + 2 1 ]
Log in to reply
Yes, but you can take the floors out to get a rough estimate of how n and m are related. Then you can do the exact computations once you have a ballpark for m .
Problem Loading...
Note Loading...
Set Loading...
If we take the floor functions out, then the right side is m ( e − 1 ) . So m should be about 3 4 3 8 / ( e − 1 ) , which is between 2 0 0 0 and 2 0 0 1 . It's easy to compute S ( 3 4 3 4 ) = 2 0 0 0 , and then S ( 3 4 3 8 ) = 2 0 0 3 .
The extra credit answer is no. Given any positive integer k , pick n such that S ( n ) = ( k + 1 ) ! − 1 . Then S ( n + 1 ) , … , S ( n + k ) all don't exist, and S ( n + k + 1 ) = ( k + 1 ) ! .