diff options
| -rw-r--r-- | challenge-169/james-smith/README.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/challenge-169/james-smith/README.md b/challenge-169/james-smith/README.md index 4ddc4fc7f2..4be886eb18 100644 --- a/challenge-169/james-smith/README.md +++ b/challenge-169/james-smith/README.md @@ -97,6 +97,42 @@ The output in each row is the brilliant number and the two primes which are it's 50: 713 = 23 x 31 ``` +For large `n` we have: + +``` + 100: 21,600 = 2^5 . 3^3 . 5^2 + 200: 66,248 = 2^3 . 7^2 . 13^2 + 300: 136,107 = 3^3 . 71^2 + 400: 225,000 = 2^3 . 3^2 . 5^5 + 500: 333,396 = 2^2 . 3^5 . 7^3 + 600: 464,648 = 2^3 . 241^2 + 700: 617,400 = 2^3 . 3^2 . 5^2 . 7^3 + 800: 784,000 = 2^7 . 5^3 . 7^2 + 900: 969,624 = 2^3 . 3^3 . 67^2 + 1000: 1,179,648 = 2^17 . 3^2 + 2000: 4,255,443 = 3^3 . 397^2 + 3000: 9,082,800 = 2^4 . 3^3 . 5^2 . 29^2 + 4000: 15,635,232 = 2^5 . 3^2 . 233^2 + 5000: 23,876,179 = 19^3 . 59^2 + 6000: 33,818,428 = 2^2 . 7^3 . 157^2 + 7000: 45,489,708 = 2^2 . 3^3 . 11^2 . 59^2 + 8000: 58,752,800 = 2^5 . 5^2 . 271^2 + 9000: 73,641,248 = 2^5 . 37^2 . 41^2 + 10000: 90,209,312 = 2^5 . 23^2 . 73^2 + 20000: 344,478,752 = 2^5 . 17^2 . 193^2 + 30000: 758,595,456 = 2^7 . 3^5 . 29^3 + 40000: 1,330,259,301 = 3^3 . 7^3 . 379^2 + 50000: 2,057,748,300 = 2^2 . 3^7 . 5^2 . 97^2 + 60000: 2,941,077,600 = 2^5 . 3^7 . 5^2 . 41^2 + 70000: 3,978,593,667 = 3^3 . 61^2 . 199^2 + 80000: 5,171,352,984 = 2^3 . 3^5 . 7^2 . 233^2 + 90000: 6,518,604,456 = 2^3 . 3^2 . 7^2 . 13^3 . 29^2 +100000: 8,017,975,944 = 2^3 . 3^3 . 11^3 . 167^2 +150000: 17,810,638,848 = 2^11 . 3^2 . 983^2 +200000: 31,413,171,744 = 2^5 . 3^2 . 17^3 . 149^2 +250000: 48,804,377,888 = 2^5 . 7^4 . 797^2 +300000: 69,976,609,587 = 3^3 . 50909^2 +``` ### Removing pretty print If we remove the pretty print this reduces to: |
