![]() |
|
|
#100 |
|
Bamboozled!
"๐บ๐๐ท๐ท๐ญ"
May 2003
Down not across
2A2116 Posts |
|
|
|
|
|
|
#101 | |
|
Bamboozled!
"๐บ๐๐ท๐ท๐ญ"
May 2003
Down not across
3×5×719 Posts |
Quote:
The fitted function is still quite close but it is starting to look like as if it over-estimates the counts at large values of its argument. We should soon have counts as high as 4e13 and can test Blazys' hypothesis further. Paul |
|
|
|
|
|
|
#102 | |
|
Aug 2006
3·1,993 Posts |
Quote:
Best-fit coefficients: c1 = 0.640362740389 c2 = -0.397518352268 Blazys: c1 = 0.64036274310 c2 = -0.40011254372 Last fiddled with by CRGreathouse on 2011-03-09 at 16:15 |
|
|
|
|
|
|
#103 |
|
"Nancy"
Aug 2002
Alexandria
2,467 Posts |
|
|
|
|
|
|
#104 |
|
"Forget I exist"
Jul 2009
Dumbassville
838410 Posts |
|
|
|
|
|
|
#105 |
|
"Forget I exist"
Jul 2009
Dumbassville
26·131 Posts |
once you prove if it's accurate you might want this one:
Code:
(17:17)>blazy(4*10^100000000) %18 = 2.56145097238337059635728678312415503847 E100000000 (17:17)>## *** last result computed in 32,156 ms. (17:18)> |
|
|
|
|
|
#106 | |
|
Nov 2003
11101001001002 Posts |
Quote:
beneficial, rather just doing a 'least-squares' fit to the data? Counting these numbers (as already pointed out) is easy with a sieve. We can get a very easy (and very very sharp!) estimate for the total number of polygonal numbers less than (say) B via Euler-Maclauren summation. We have the counting function for r-gonal numbers: c(r,n) = 1/2n ( (r-2)n - (r-4)) So just solve c(r,n) < B for n as a function of r and B (a trivial quadratic equation), then do a Stieltje's integration over r. But this will give multiple counts of some elements since there are many duplicates. Fortunately, the technique for getting a sharp estimate of duplicates in a sieve was presented many years ago by DeBruijn in a paper called something like "On the number of uncancelled elements in the Sieve of Eratosthenes". This paper showed how to get a good estimate of the duplicate hits in a sieve through the use of the Buchstab function. This function is very oscillatory and is given by a differential-delay equation similar to the Dickman's functional equation. It's been many (~25?) years since I read this paper. I will try to dig it out of my archives an re-read it. I suggest that reading this paper and applying its techniques is a requirement for anyone who wants to proceed further. |
|
|
|
|
|
|
#107 | ||||
|
Aug 2006
3×1,993 Posts |
Quote:
But yes, I would like to analyze this mathematically (as, indeed, I was discussing yesterday with Paul). My initial attempts were based on pairwise intersections between forms, but the cancellation is too high with that method. My next thought was do a Legendre sieve-type calculation -- count contributions for all orders but cancellations only for small orders, bounding the overlap from higher orders. I'm not sure if this can extract enough information. I'll look into the paper you suggest, but at first glance it's not clear how to apply it to the problem at hand. Hmm... we *do* have a (small-sieve) equivalent of Buchstab's identity, so I guess it's not hopeless. Quote:
Quote:
Quote:
Last fiddled with by CRGreathouse on 2011-03-10 at 04:50 |
||||
|
|
|
|
|
#108 | |
|
Nov 2003
22·5·373 Posts |
Quote:
It will be a few days before I can retrieve it. The paper is quite old and I doubt whether it is available on the net. |
|
|
|
|
|
|
#109 | |
|
"Forget I exist"
Jul 2009
Dumbassville
26·131 Posts |
Quote:
Code:
blazy2(x)=y=[];for(k=3,x+1,for(n=3,x+1,if((1+k*n*(n-1)/2-(n-1)^2)<(x+1),y=concat(y,[(1+k*n*(n-1)/2-(n-1)^2)]),break(1))));y=vecsort(y,,8);return(#y) |
|
|
|
|
|
|
#110 | |
|
Aug 2006
135338 Posts |
Quote:
http://alexandria.tue.nl/repository/...les/597489.pdf |
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Do-it-yourself, crank, mersenne prediction thread. | Uncwilly | Miscellaneous Math | 85 | 2017-12-10 16:03 |
| non-standard sieve | req | Math | 4 | 2011-12-06 04:17 |
| Crank Emoticon | Mini-Geek | Forum Feedback | 21 | 2007-03-06 19:21 |
| Remove my thread from the Crank Forum | amateurII | Miscellaneous Math | 40 | 2005-12-21 09:42 |
| Standard Deviation Problem | jinydu | Puzzles | 5 | 2004-01-10 02:12 |