Denote S ( n ) the sum of all the positive divisors of n , including itself. For example: S ( 1 2 ) = 1 + 2 + 3 + 4 + 6 + 1 2 = 2 8 .
Find the smallest positive integer n > 1 0 such that
S ( n ) ≡ 2 0 1 8 ( m o d 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.
nice
here is a Mathematica code
n=1;While[Mod[DivisorSigma[1,n],n++]!=2018];n-1
Isn't the statement true for n = 2 6 ? The number of divisors is 1 + 2 + 1 3 + 2 6 = 4 2 . But 4 2 ≡ 1 6 ( m o d 2 6 ) and 2 0 1 8 ≡ 1 6 ( m o d 2 6 ) . Does the residue class need to be specified by the lowest positive element? My condition ignoring this fact is just the following:
1 |
|
Problem Loading...
Note Loading...
Set Loading...