Above shows the first few digits decimal expansion of , written in groups of 3.
If we split this decimal expansion into groups of 3 we see multiple primes appearing! However these primes end at a certain point. After how many decimal (digits) does this pattern cease?
Details and Assumptions :
Inspired by Garret C. , Pi Han Goh and Daniel Liu .
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.
Clearly the intended answer is bash away and hope it's not like 300. So we bash
The given fraction is equivalent to approximately 0 . 0 2 9 0 3 1 0 3 7 0 4 7 0 6 1 0 7 9 1 0 1 1 2 7 1 5 7 1 9 1 2 2 9 2 7 1 3 1 7 3 6 7 4 2 1 4 7 9 5 4 1 6 0 7 6 7 7 7 5 1 8 2 9 9 1 1 9 9 8 plus some stuff. We chunk this into triplets, and eventually get the triplet 9 9 8 , which is clearly not prime. Thus, we just have to check all of the numbers before it. We find that none of the previous numbers are composite, so 9 9 8 is the first composite chunk, and we count to get 6 6 .
Seriously, though, what is the intended solution? I can't think of anything that feels useful.