Prev: A mathematical coincidence? (Ramanujan-Nagell eqn)
Next: No one owns code any more than anyone owns a word or a number.
From: Ross on 9 Apr 2010 00:24 Automorphic numbers are defined as those n such that n=n^2 mod 10^k for some k If leading zeroes are allowed, there are two of each length greater than 1. For k=6, they are 890625 and 109376. The Wikipedia page says that if you have one of length k, you can get one of length 2k by n'=3n^2-2n^3 mod 10^(2k) I have checked small values and it works, but there are no references and the ones on MathWorld are inaccessible. Is there an easy proof of this? I am prompted to look for other bases than 10 due to an Euler Project problem (which I have solved) and if I understand where it comes from it will help.
From: Link on 9 Apr 2010 04:10 On Apr 8, 9:24 pm, Ross <rmill...(a)pacbell.net> wrote: > Automorphic numbers are defined as those n such that n=n^2 mod 10^k > for some k > If leading zeroes are allowed, there are two of each length greater > than 1.  For k=6, they are 890625 and 109376.  The Wikipedia page says > that if you have one of length k, you can get one of length 2k by > n'=3n^2-2n^3 mod 10^(2k) > I have checked small values and it works, but there are no references > and the ones on MathWorld are inaccessible. Is there an easy proof of > this?  I am prompted to look for other bases than 10 due to an Euler > Project problem (which I have solved) and if I understand where it > comes from it will help. Coudn't you just check some larger values with a program like this? nextInt(); if (d >= n) { if ((n * n) % d == n) { System.out.println("Automorphic Number"); } else { System.out.println("Not Automorphic Number"); My stab at a proof: Proof. From [10.1] main result of [11] two numbers in: e(Ï(2,S) ratio=nâ1 n is odd qâε1â¡4(mod 8) t(2,S)=3 write rnâ2 as r nk=2(nâ1)k 2k=(3nâ4)k nâ1=n/(3nâ4) mmm
From: Tim Little on 9 Apr 2010 21:19
On 2010-04-09, Ross <rmillika(a)pacbell.net> wrote: > Automorphic numbers are defined as those n such that n=n^2 mod 10^k > for some k > If leading zeroes are allowed, there are two of each length greater > than 1. For k=6, they are 890625 and 109376. The Wikipedia page says > that if you have one of length k, you can get one of length 2k by > n'=3n^2-2n^3 mod 10^(2k) The original relation can be written as n^2 - n = a 10^k for some integer a. With a little algebra, n'^2 - n' = (n^2 - n)^2 (2n-3) (2n+1) = a^2 10^(2k) (2n-3) (2n+1). So n'^2 - n' = 0 mod 10^(2k). > I am prompted to look for other bases than 10 due to an Euler > Project problem (which I have solved) and if I understand where it > comes from it will help. The derivation above is not specific to base 10. - Tim |