Earlier quoted context omitted.
If by "this" you mean the 83-digit prime in the question, then no. There's no indication that there are no other 83-digit bitruncatable primes - that's just the only one the author had found. If you mean the sole 97-digit solution given in the comments, the implication that all the bitruncatable primes have been found and enumerated by your method, and the assertion that there are no such 99-digit primes - then yes,…
I've written some simple code and verified that commenter's numbers through 19 digits. Edit: parallelized the code and proved through 19 digits. That's where I'm stopping due to the uint64 space limitations.
What is the largest bi-truncatable prime?
11–20 of 21 posts
Re: What is the largest bi-truncatable prime?
#12I find it difficult be interested in these, primes are primes; bi-truncatable are base-10 specific. It feels more like numerology in the same way that we assign meaning to powers of 10 and the natural world does not.
Re: What is the largest bi-truncatable prime?
#13Let’s assume we have B(n) bitruncatable primes of length (n)
For B(n+2), we have at most 45 times that number (digit added at the front can’t be a zero; digit added at the back must be odd)
The fraction of them that’s prime is about 2/log(10^(n+1)) (factor 2 added because we already dropped all even numbers; n+1 in the denominator as being halfway between n and n+2 digits; neither factors affect the conclusion)
That gives us the recurrence relation
B(n+2) ~= 90B(n)/log(10^(n+1))
= 90B(n)/((n+1)log(10))
= (90/log(10)) B(n)/(n+1)
That number gets smaller and smaller once n > 90/log(10) (about 39)So, I think it’s very likely there is a largest one.
This line of thought applies to all integer bases > 2 (there isn’t a largest one in base 2 because there isn’t any in base 2)
Re: What is the largest bi-truncatable prime?
#14Earlier quoted context omitted.
"What's the smallest power of pi that spells your name when encoded in base64?"
There's probably an infinite set of such powers inside any neighborhood of zero.
Re: What is the largest bi-truncatable prime?
#15Earlier quoted context omitted.
There's probably an infinite set of such powers inside any neighborhood of zero.
I was going to say, that irrationality would mean that any power of pi would contain your name given enough digits.
Re: What is the largest bi-truncatable prime?
#16I find it difficult be interested in these, primes are primes; bi-truncatable are base-10 specific. It feels more like numerology in the same way that we assign meaning to powers of 10 and the natural world does not.
I don't think anyone is trying to ascribe any meaning to this.. like the name of the site implies, it's just a puzzle.
Re: What is the largest bi-truncatable prime?
#17Earlier quoted context omitted.
There's probably an infinite set of such powers inside any neighborhood of zero.
I was going to say, that irrationality would mean that any power of pi would contain your name given enough digits.
Re: What is the largest bi-truncatable prime?
#18So, is there a truly largest one? Let’s assume we have B(n) bitruncatable primes of length (n) For B(n+2), we have at most 45 times that number (digit added at the front can’t be a zero; digit added at the back must be odd) The fraction of them that’s prime is about 2/log(10^(n+1)) (factor 2 added because we already dropped all even numbers; n+1 in the denominator as being halfway between n and n+2 digits; neither fa…
Re: What is the largest bi-truncatable prime?
#19Earlier quoted context omitted.
There's probably an infinite set of such powers inside any neighborhood of zero.
I was going to say, that irrationality would mean that any power of pi would contain your name given enough digits.
Irrationality would be enough to guarantee that you can find a power where your name is right at the start. You do need log(pi)/log(10) (or whatever base you're using) to be irrational for that to work, but I think you can prove that using the fact that pi is transcendental.
Re: What is the largest bi-truncatable prime?
#20Am I overlooking something, or is it obvious that if this is the single largest bi-truncatable prime known so far, that any larger one has to contain this prime in its middle? So finding a new largest bi-truncatable prime is just a matter of trying to add each single digit at both sides of this prime; if any of them is again a prime, we have a new largest and if none of them is (which I guess is the case because the…
If by "this" you mean the 83-digit prime in the question, then no. There's no indication that there are no other 83-digit bitruncatable primes - that's just the only one the author had found. If you mean the sole 97-digit solution given in the comments, the implication that all the bitruncatable primes have been found and enumerated by your method, and the assertion that there are no such 99-digit primes - then yes,…
I wrote a solver for this problem: https://github.com/jwilk/bitruncatable-primes
I haven't run it yet, because I don't have a powerful-enough machine at hand. It needs ~6 GB of RAM and ~20 CPU core-hours.