[1] https://math.stackexchange.com/questions/2654984/identifying...
An Interesting Pattern in the Prime Numbers: Parallax Compression
31–40 of 195 posts
Re: An Interesting Pattern in the Prime Numbers: Parallax Compression
#32> on January 18, 2018, I found a numerical sequence that generated the exact same pattern as Shaun’s pattern Does this mean that we have a sort of bloom filter-esque test for primality? (ie, it will give you a guaranteed no in O(1) but you'll have to crunch numbers to get the yes?) If so, are there implications for things that want to know "is it prime?" quickly? Crpytography comes to mind, for instance...
This catches most non-primes ;)
bool maybe_prime(x) { return x % 2 && x % 3 && x % 5 && x % 7; }
Re: An Interesting Pattern in the Prime Numbers: Parallax Compression
#33Is there are particular reasoning or meaning to each dot being 6 numbers? Is there any significant changes if you pick other numbers per dot, following the same pattern? Based on the linked explanation here: https://beta.observablehq.com/@montyxcantsin/unwinding-the-u...
Re: An Interesting Pattern in the Prime Numbers: Parallax Compression
#34If this can really map prime numbers to a least a general region, would we be able to break Diffie-hellman key exchange more quickly? If so this could be a huge blow to security. But I must say this is amazing that they were able to visualize prime numbers in this way. These guys are geniuses.
Re: An Interesting Pattern in the Prime Numbers: Parallax Compression
#35> on January 18, 2018, I found a numerical sequence that generated the exact same pattern as Shaun’s pattern Does this mean that we have a sort of bloom filter-esque test for primality? (ie, it will give you a guaranteed no in O(1) but you'll have to crunch numbers to get the yes?) If so, are there implications for things that want to know "is it prime?" quickly? Crpytography comes to mind, for instance...
>Does this mean that we have a sort of bloom filter-esque test for primality? This catches most non-primes ;) bool maybe_prime(x) { return x % 2 && x % 3 && x % 5 && x % 7; }
Re: An Interesting Pattern in the Prime Numbers: Parallax Compression
#36My gut sense is that this has something to do with visualizing the sieve of Eratosthenes, and nothing more than that. But I'd be happy to hear otherwise.
Other than the sieve of Eratosthenes being a way to compute a finite list of primes I don't see the relationship here. Could you elaborate?
Re: An Interesting Pattern in the Prime Numbers: Parallax Compression
#37Re: An Interesting Pattern in the Prime Numbers: Parallax Compression
#38Re: An Interesting Pattern in the Prime Numbers: Parallax Compression
#39> on January 18, 2018, I found a numerical sequence that generated the exact same pattern as Shaun’s pattern Does this mean that we have a sort of bloom filter-esque test for primality? (ie, it will give you a guaranteed no in O(1) but you'll have to crunch numbers to get the yes?) If so, are there implications for things that want to know "is it prime?" quickly? Crpytography comes to mind, for instance...
https://en.wikipedia.org/wiki/Primality_test#Probabilistic_t...