Number Theory
Number Theory
I solved it using http://www.alpertron.com.ar/ECM.HTM and http://primes.utm.edu/lists/small/1000.txt. However, I wonder whether the factor 433^11 has been intentionally omitted. Nevertheless, a nice challenge.
-
- Posts: 144
- Joined: Fri Mar 28, 2008 11:29 pm
- Location: #hacker.org on Freenode
Once again Mathematica has proven itself to be a wonderful tool:
Execution time of 15ms, poking around time: a bit longer
Code: Select all
n = 364843790094573992692171828893958267226605666939892572894047098638\
9184961532284016919213346409983710756329032006862785922310236412226440\
1785848633686914239718396824942863542362872670850647423969609315959515\
511402019435615717737240510626468808851903266920099765545245394707;
FromCharacterCode[
PrimePi[#1[[1]]] & /@ Sort[FactorInteger[n], #1[[2]] < #2[[2]] &]
]