Quote:
Originally Posted by JohnFullspeed
( yes I've checked it, and I'm guessing it's a typo?)
Yes I inverse the two first digir of P
21247 is not 12247!!!!
223092870 div 21247 = 10499
P^10499 < Offset
p^10500 > Offset
N= P^10500- Offset
or
N=P-(offset mod p)
N must be >0 and < Offset)
I restart from 0 and I code verifying the error line by line
Have you an idea how to process the Golback conjecture:
all even value is the sum of two primes numbers??
John
|
a code I just made:
Code:
f=[];for(i=1,100,for(j=1,100,f=concat(f,if((prime(i)+prime(j))%2==0,prime(i)+prime(j)))));vecsort(f,,8)