Every odd number n>3 can be written as:
n=2*p+q
where p and q are two odd primes or 1.
I tested it by computer search up to 10^6.
Thanks Felice
It is easily seen to be a slight weakening of Goldbach's conjecture.
Bob Silverman
"You can lead a horse's ass to knowledge, but you can't make him think"
Sent via Deja.com http://www.deja.com/
Before you buy.
>I don't believe this has been proven. It is
>related to Goldbach's ternary conjecture, that
>any odd #>5 may be expressed as the sum of three
>primes.
I seem to vaguely recall that the ternary conjecture has been proved,
or at least something resembling it.
John Savard (don't snooze, don't snore)
http://www.ecn.ab.ca/~jsavard/crypto.htm
connie 1000000 1
Will show any failures for odd numbers from 7 up to 1000000.
connie 1000
Sample runs:
D:\TMP>connie 10000000 1
Searching prime numbers to : 10000000
664579 prime numbers found in 1.00 secs.
Finished calculations in 6.00 secs.
D:\TMP>connie 50
Searching prime numbers to : 50
15 prime numbers found in 0.00 secs.
7 = 2*2 + 3
9 = 2*2 + 5
11 = 2*2 + 7
13 = 2*3 + 7
15 = 2*2 + 11
17 = 2*2 + 13
19 = 2*3 + 13
21 = 2*2 + 17
23 = 2*2 + 19
25 = 2*3 + 19
27 = 2*2 + 23
29 = 2*3 + 23
31 = 2*7 + 17
33 = 2*2 + 29
35 = 2*2 + 31
37 = 2*3 + 31
39 = 2*5 + 29
41 = 2*2 + 37
43 = 2*3 + 37
45 = 2*2 + 41
47 = 2*2 + 43
49 = 2*3 + 43
Finished calculations in 0.00 secs.
Will show the actual values found that complete the conjecture for odd
numbers up to 1000.
Here is the original email:
Path:
client!psinr!peerfeed.news.psi.net!news.idt.net!news-spur1.maxwell.syr.edu!n
ews.maxwell.syr.edu!nntp2.deja.com!nnrp1.deja.com!not-for-mail
From: cea...@my-deja.com
Newsgroups: sci.math
Subject: Re: Conjecture on odd numbers
Date: Fri, 19 Nov 1999 18:57:48 GMT
Organization: Deja.com - Before you buy.
Lines: 31
Message-ID: <8146j9$39k$1...@nnrp1.deja.com>
References: <0vg2x4...@forum.swarthmore.edu>
NNTP-Posting-Host: 208.247.199.72
X-Article-Creation-Date: Fri Nov 19 18:31:29 1999 GMT
X-Http-User-Agent: Mozilla/4.0 (compatible; MSIE 4.01; Windows 95)
X-Http-Proxy: 1.1 x40.deja.com:80 (Squid/1.1.22) for client 208.247.199.72
Xref: client sci.math:201473
In article <0vg2x4...@forum.swarthmore.edu>,
fru...@micron.com (Felice Russo) wrote:
> Is the following conjecture already known or
proved?
>
> Every odd number n>3 can be written as:
> n=2*p+q
> where p and q are two odd primes or 1.
>
> I tested it by computer search up to 10^6.
>
> Thanks Felice
I don't believe this has been proven. It is
related to Goldbach's ternary conjecture, that
any odd #>5 may be expressed as the sum of three
primes. I make a stronger conjecture: That any
odd #>5 may be expressed as 2*p+q, where p and q
are primes. This conjecture allows the use of
the prime "2", and does not require the use of
"1". For example, 7=2*2+3; 15=2*2+11=2*5+5;
17=2*2+13=2*3+11=2*5+7=2*7+3. I don't know how
to program, so I haven't tested it, except by
hand. Let me know if you are interested in
pursuing this.
You're welcome, and thanks,
Connie
Sent via Deja.com http://www.deja.com/
Before you buy.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#define TEST( f, x ) ( *( f+( x )/16 )&( 1<<( ( ( x )%16L )/2 ) ) )
#define SET( f, x ) *( f+( x )/16 )|=1<<( ( ( x )%16L )/2 )
unsigned ip(unsigned long j, unsigned char *d)
{
if (j == 1)
return 0;
if ((j % 2) == 0) {
if (j == 2)
return 1;
else
return 0;
} else
return (!(*(d + (j) / 16) & (1 << (((j) % 16L) / 2))) && j != 1);
}
int main(int argc, char *argv[])
{
unsigned char *feld = NULL,
*zzz = NULL;
unsigned long teste = 1,
max,
mom,
hits = 1,
alloc;
time_t begin;
unsigned char quiet = 0;
if (argc > 1) {
max = atol(argv[1]) + 10000;
if (argc > 2)
quiet = 1;
} else
max = 14010000L;
zzz = feld = malloc(alloc = (((max -= 10000L) >> 4) + 1L));
if (feld) {
char found;
memset(zzz, 0, alloc);
printf("Searching prime numbers to : %lu\n", max);
begin = time(NULL);
while ((teste += 2) < max)
if (!TEST(feld, teste)) {
++hits;
for (mom = 3L * teste; mom < max; mom += teste << 1)
SET(feld, mom);
}
printf(" %ld prime numbers found in %.2f secs.\n\n",
hits, difftime(time(NULL), begin));
{
long o,
p,
q,
j;
for (o = 7; o <= max; o += 2) {
found = 0;
for (j = 2; j < o;) {
p = j;
q = o - 2 * p;
if (ip(p, feld) && ip(q, feld)) {
if (!quiet)
printf("%lu = 2*%lu + %lu\n", o, p, q);
found = 1;
break;
}
if (j == 2)
j++;
else
j += 2;
}
if (!found)
printf("*** Problem!! %lu\n", o);
}
free(feld);
printf(" Finished calculations in %.2f secs.\n\n",
difftime(time(NULL), begin));
}
} else {
puts("Memory allocation failure.");
exit(EXIT_FAILURE);
}
return 0;
}
--
C-FAQ: http://www.eskimo.com/~scs/C-faq/top.html
"The C-FAQ Book" ISBN 0-201-84519-9
C.A.P. Newsgroup http://www.dejanews.com/~c_a_p
C.A.P. FAQ: ftp://38.168.214.175/pub/Chess%20Analysis%20Project%20FAQ.htm
Tapio
Felice Russo <fru...@micron.com> kirjoitti
viestissä:0vg2x4...@forum.swarthmore.edu...
Enjoy it while it lasts. It won't happen again for a while.
| Jim Ferry | Center for Simulation |
+------------------------------------+ of Advanced Rockets |
| http://www.uiuc.edu/ph/www/jferry/ +------------------------+
| jferry@[delete_this]uiuc.edu | University of Illinois |
More than just odd -- they're all prime!
:Date: Fri, 19 Nov 1999 14:38:55 -0800
:From: Dann Corbit <dco...@solutionsiq.com>
:Newsgroups: sci.math
:Subject: Prime dates
:
:Jim Ferry <"jferry"@[delete_this]uiuc.edu> wrote in message
:news:814ic3$96$1...@vixen.cso.uiuc.edu...
:> Speaking of odd numbers, all the digits of today's date,
:> 11/19/1999, are odd.
:>
:> Enjoy it while it lasts. It won't happen again for a while.
:
:More than just odd -- they're all prime!
In fact, none of the digits is prime, but 11, 19 and 1999 are prime.
:--
:
:
:
D:\TMP\ioccc\RELEASE>connie 1000000000 1
Searching prime numbers to : 1000000000
50847534 prime numbers found in 250.00 secs.
Finished calculations in 1015.00 secs.
First of all, "known" would mean that it has been proven, which it hasn't
to my knowledge. Secondly, the question is whether the equation can hold
for any odd n, not any natural p, which would correspond to de Polignac.
Basically, I don't see any connection between the two :).
-- Erick
Vinogradov showed that it was true for sufficiently large n. Under the
Riemann hypothesis, Deshouillers, Effinger, te Riele and Zinoviev (1997)
have established it for all n. The best bound I can find in the absence
of Riemann is 10^7194 by Chen and Wang (1996).
-- Erick
Very sharp indeed (funny even, those exact mathematicians;-)
[*] But in what number base representation?
Assumptions galore....
--
Ciao, Nico Benschop. | AHA: One is Always Halfway Anyway
http://www.iae.nl/users/benschop | Institute of Advanced Engineering
:Date: Sun, 21 Nov 1999 02:45:31 +0800
:From: Dirichlet <anty...@hotmail.com>
:Newsgroups: sci.math
:Subject: Re: Prime dates
:
:And in fact, 19111999 is also prime (this is the way we write dates in my
:part of the world).
Mine too, except we usually have something to separate day, month and
year, viz 19/11/1999.
:
:Richard Carr <ca...@math.columbia.edu> wrote in message
:news:Pine.LNX.4.21.991119...@cpw.math.columbia.edu...
:> On Fri, 19 Nov 1999, Dann Corbit wrote:
:>
:> :Date: Fri, 19 Nov 1999 14:38:55 -0800
:> :From: Dann Corbit <dco...@solutionsiq.com>
:> :Newsgroups: sci.math
:> :Subject: Prime dates
:> :
:> :Jim Ferry <"jferry"@[delete_this]uiuc.edu> wrote in message
:> :news:814ic3$96$1...@vixen.cso.uiuc.edu...
:> :> Speaking of odd numbers, all the digits of today's date,
:> :> 11/19/1999, are odd.
:> :>
:> :> Enjoy it while it lasts. It won't happen again for a while.
:> :
:> :More than just odd -- they're all prime!
:>
:> In fact, none of the digits is prime, but 11, 19 and 1999 are prime.
:>
:> :--
:> :
:> :
:> :
:>
:
:
:
Richard Carr <ca...@math.columbia.edu> wrote in message
Richard Carr <ca...@math.columbia.edu> wrote in message
news:Pine.LNX.4.21.991120...@cpw.math.columbia.edu...
> On Sun, 21 Nov 1999, Dirichlet wrote:
>
> :Date: Sun, 21 Nov 1999 02:45:31 +0800
> :From: Dirichlet <anty...@hotmail.com>
> :Newsgroups: sci.math
> :Subject: Re: Prime dates
> :
> :And in fact, 19111999 is also prime (this is the way we write dates in my
> :part of the world).
>
> Mine too, except we usually have something to separate day, month and
> year, viz 19/11/1999.
>
> :
> :Richard Carr <ca...@math.columbia.edu> wrote in message
> :> :
> :> :
> :>
> :
> :
> :
>