marteinson - I think I see why they are saying that this fits in "Theory Development", though I don't think it really fits under a "Physics" category. If there's a general understanding that a topic such as "Number Theory" will be reserved for talking about known theorems, formalized theories, the history of the field, etc., then "new theories", which was kind of implied in your original posts, wouldn't really belong there. People looking for help or clarification might be confused as to the formal status of the ideas.
You might want to look into "Explaining the wheel sieve" by Pritchard. It puts this into practice in a more sophisticated way to generate a list of primes. It's also essentially using your recursive idea, and using larger "wheels" at each stage (the paper has more details).
Thanks shmoe, I will definite look into this. Very encouraging to see that some ideas I've had on my own actually might lead somewhere worthwhile!
marteinson said:
I'm not entirely sure I see his opinion that the definition is recursive in the same way he does
That's probably because, as far as I can tell, you and I are considering different things to be "fundamental". You're considering the distribution of prime multiples to be "fundamental", whereas I'm saying that the locations of those earlier primes are at a lower level yet than that. In short, the multiples are where they are because of where the earlier primes are.
If primes are, as I've read many places, "the building blocks of numbers", then they would essentially be the "elements" of the integers. A scattering of indivisible numbers can be used to build everything that falls in between. In this respect, I consider them fundamental. But what is it that determines whether a given large number k is prime or not? As you've correctly noted, it is the fact that of all the prime numbers p where p < \sqrt{k}, there is no integer m such that k=pm. Rather than the multiples falling at k, they fall at numbers
near k. By which of course I mean the nearest multiples pm satisfy pm >= k - p, pm <= k + p, pm \neq k. Put another way, if k is to be prime, the ranges [k - p, k) and (k, k + p] must include multiples of all primes p where p < \sqrt{k}.
So the primeness of a large number depends on the locations of multiples of smaller primes. And the locations of those primes depends on the location of the multiples of yet smaller primes, until you get down to the most fundamental of all primes: 2, which is prime only because there are no integers between it and unity which could even be candidates for being factors.
So the set of primes is recursive, or iterative, in that you can set the base condition for an algorithm to generate the set of the first n primes (call it P(n) ), and from that build all the rest after it. All you need to know is that P(1) is 2, and then P(n) where n > 2 is just a couple of GCD and LCM calculations, and some set differences, using the set given by P(n-1). But those functions themselves are iterative, so it's not a very efficient algorithm. Lots of loops and recursion. Yes, most things in mathematics are, at fundamental levels of definition, recursive. But there are also many many "shortcuts". I'm sure there are better algorithms than the one I vaguely described, but I've never heard of any algorithms that are proven to generate the nth prime that are not also recursive or iterative in some way. Am I wrong on that, anyone? I'd be greatly interested to hear of one that's not.