![]() |
|
|
#1 |
|
Aug 2006
3·1,993 Posts |
I'm trying to estimate the product
where p,q,r,s are primes. This can also be calculated as a sum, if desired: for each quadruple, add This is for the purpose of calculating the density of Sloane's A070284. For some reason my naive calculations so far have diverged strongly from evidence obtained from examining the first few hundred members of this sequence, so I may be mistaken about the whole thing -- or my calculations may simply be far from adequate. Any insight to either the problem or the product would be appreciated. |
|
|
|
|
|
#2 | |
|
Nov 2003
22×5×373 Posts |
Quote:
Products of this sort can be quite 'delicate' to estimate. I would ask at http://listserv.nodak.edu/archives/nmbrthry.html |
|
|
|
|
|
|
#3 |
|
Aug 2006
3·1,993 Posts |
I'll try that. I think there might be a way to express the product with the primezeta function, which (if true) would not save any effort but would give better precision (since calculating up to a given limit would let s be arbitrarily large rather than just as large as the limit). It's not hard to get that with the (naive) sum version of the problem, but that appears to give a sum greater than 1... clearly there's a lot of cancellation going on.
|
|
|
|
|
|
#4 | |
|
"Forget I exist"
Jul 2009
Dumbassville
26×131 Posts |
Quote:
if we add ((24-24Ans)/(24^2)) to this we get .91015625 I'm probably wrong on this one as I only changed one to 3 so technically I should use 81^2 I think. this would make the second one .906592935528 or 90659293553 depending on if my pocket calculator wants to help me lol. |
|
|
|
|
|
|
#5 | |
|
Aug 2006
3·1,993 Posts |
I posted it to MathOverflow; maybe it'll get some eyes there.
I'm calculating the product with s < 7000 now; I expect it will take ~16 hours to finish (around 6pm my time). That should give me some kind of estimate, though I really want 6+ decimal places and that's going to be hard to get. Quote:
|
|
|
|
|
|
|
#6 | |
|
"Robert Gerbicz"
Oct 2005
Hungary
27148 Posts |
Quote:
Code:
n==0 mod p1^2*p2^2 n+1==0 mod p3^2 n+2==0 mod p4^2 n+3==0 mod p5^2 Another argument suppose you are using only 5 primes p1,..,p5 in this case the product using these primes multipled by p1^2...*p5^2 should be an integer, but that is not true here. It would be possible to use inclusion-exclusion principle to get a correct sieve/product for the density. (It is not trivial). |
|
|
|
|
|
|
#7 |
|
Aug 2006
3×1,993 Posts |
Good catch! That would explain the very slight divergence (0.0001) I was seeing between the first 100,000 terms of the sequence and the constant as calculated.
You're right, that is nontrivial. Ick. Last fiddled with by CRGreathouse on 2010-07-23 at 19:32 |
|
|
|
|
|
#8 |
|
Aug 2006
3×1,993 Posts |
Wait, that might not be as bad as I had thought. What if I multiplied in
to ensure that none of the terms are divisible by the squares of any other primes? Then I'd have to multiply in the case of 5 prime squares, the case of 6 prime squares, etc. -- but these would be small enough that hopefully the first 500 primes would suffice for their calculations. Edit: Of course I'd need to special-case the prime 2 out... but that actually makes the primary calculation more tractable. Last fiddled with by CRGreathouse on 2010-07-23 at 19:39 |
|
|
|
|
|
#9 |
|
Aug 2006
3×1,993 Posts |
OK, maybe
? Last fiddled with by CRGreathouse on 2010-07-23 at 20:20 |
|
|
|
|
|
#10 |
|
"Robert Gerbicz"
Oct 2005
Hungary
22×7×53 Posts |
This is my "sum" version for the density, up to 6 primes in the sieve (using inclusion-exclusion principle):
Code:
F(L)=c=0.0;M=[0,0,0,24,-240,1560,0,0,0,0,0,0,0,0,0];\ return(sum(n=2,L,1.0*abs(moebius(n))*M[omega(n)]/n/n)) And this should be an upper bound for the density if the M array is correct up to M[6], obiously one could fill up for higher values also. |
|
|
|
|
|
#11 |
|
Aug 2006
3×1,993 Posts |
|
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Product of consecuative terms in subsets of primes is 1 (mod ab) | carpetpool | Miscellaneous Math | 1 | 2017-02-25 16:08 |
| Estimating the number of primes in a partially-factored number | CRGreathouse | Probability & Probabilistic Number Theory | 15 | 2014-08-13 18:46 |
| Euclid's proof of the infinite number of primes | troels munkner | Miscellaneous Math | 43 | 2010-09-06 01:36 |
| Estimating a product over primes (brainfreeze) | CRGreathouse | Math | 17 | 2010-08-27 14:31 |
| Estimating a sum over primes | brownkenny | Math | 6 | 2010-08-25 01:28 |