mersenneforum.org  

Go Back   mersenneforum.org > Extra Stuff > Blogorrhea > MattcAnderson

Reply
 
Thread Tools
Old 2013-10-31, 23:52   #78
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

3×1,993 Posts
Default

Quote:
Originally Posted by science_man_88 View Post
I tried looking for it using pari and my eyes and couldn't find it. I did use x such that gcd(120,x)==1 only.
You couldn't find primorials? Try

Code:
primorial(x)=prod(i=1,primepi(x),prime(i))
CRGreathouse is offline   Reply With Quote
Old 2013-11-01, 00:16   #79
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

100000110000002 Posts
Default

Quote:
Originally Posted by CRGreathouse View Post
You couldn't find primorials? Try

Code:
primorial(x)=prod(i=1,primepi(x),prime(i))
It was the overlap with the residues mod 120 that allow primes, that I couldn't find.
science_man_88 is offline   Reply With Quote
Old 2013-11-01, 00:41   #80
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

3·1,993 Posts
Default

Quote:
Originally Posted by science_man_88 View Post
It was the overlap with the residues mod 120 that allow primes, that I couldn't find.
I don't know what you're talking about. If you mean the numbers coprime to 120, that's

Code:
select(n->gcd(n,120)==1, vector(120,i,i))
Of course there are infinitely many primes congruent to each of these residues mod 120.

Last fiddled with by CRGreathouse on 2013-11-01 at 00:43
CRGreathouse is offline   Reply With Quote
Old 2013-11-01, 03:45   #81
MattcAnderson
 
MattcAnderson's Avatar
 
"Matthew Anderson"
Dec 2010
Oregon, USA

25·52 Posts
Default

10/31/2013

Thanks for the input, Batalov.

The quadruplets webpage that you referenced,
at the University of Tenisee in Martin shows
the largest quadruplets known,

while the online encyclopedia of integer sequences
lists out the smallest known quadruplets.

Thanks again for the keen eye.

Regards,
Matt
MattcAnderson is offline   Reply With Quote
Old 2013-11-01, 04:22   #82
MattcAnderson
 
MattcAnderson's Avatar
 
"Matthew Anderson"
Dec 2010
Oregon, USA

25×52 Posts
Default

Thanks again for the input.

As a matter of fact, in regards to prime constellations, new ones can be found.
The pattern B = {0,4,6, ... 76} has 19 elements.
Primes of this form can be found with the expression
x = 30030*n + 29917

I am not saying that every prime fitting expression x will make
x, x+4, x+6, ... x+76
a prime number.

What I am saying is that probably,there is an n which causes the x to make all 17 number prime.

And with enough computing power,
it is feasible.

Regards,
Matt
MattcAnderson is offline   Reply With Quote
Old 2013-11-01, 04:30   #83
MattcAnderson
 
MattcAnderson's Avatar
 
"Matthew Anderson"
Dec 2010
Oregon, USA

14408 Posts
Default

Same day ....

My estimate is that x has more than 26 digits.

Regards,
Matt
MattcAnderson is offline   Reply With Quote
Old 2013-11-01, 17:52   #84
Jens K Andersen
 
Jens K Andersen's Avatar
 
Feb 2006
Denmark

3468 Posts
Default

Quote:
Originally Posted by science_man_88 View Post
I tried looking for it using pari
Here is a PARI/GP function to test whether a constellation is admissible:
admissible(v)=forprime(p=2,#v,if(#Set(v%p)==p,return(0)));1

This function returns the inadmissible primes:
admissiblep(v)=local(i=[]);forprime(p=2,#v,if(#Set(v%p)==p,i=concat(i,p)));i

Examples:
Code:
? admissible([0,2,4])
%36 = 0
? admissible([0,2,6])
%37 = 1
? admissiblep([0,2,4])
%38 = [3]
? admissiblep([0,2,6])
%39 = []
? admissible([0,4,6,10,12,16,24,30,34,40,42,46,52,54,60,66,70,72,76])
%40 = 1
Jens K Andersen is offline   Reply With Quote
Old 2013-11-04, 18:39   #85
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2

36×13 Posts
Default

Quote:
Originally Posted by MattcAnderson View Post
10/31/2013

Thanks for the input, Batalov.

The quadruplets webpage that you referenced,
at the University of Tenisee in Martin shows
the largest quadruplets known,

while the online encyclopedia of integer sequences
lists out the smallest known quadruplets.

Thanks again for the keen eye.

Regards,
Matt
I was contrasting the UTM page to Tony Forbes' page, not to the minimal quadruplets page, for which obviously 11,13,17,19 will always be the record.

UTM page is much more alive for quads and trips. (And obviously, I didn't have to have a good eye to notice the quad page change. The currently top entry is simply mine. ;-) ...that would be the reason that I know that Tony's page is a bit out of date.)
Batalov is offline   Reply With Quote
Old 2014-06-30, 14:36   #86
miguelrey
 
Jun 2014

1 Posts
Default here miguel from spain a new demostration about prime numbers

Quote:
Originally Posted by MattcAnderson View Post
oops the .zip didn't attach
hi, (sorry i dont speak english)
i demostrated a part of the theory of numbers, but i dont know, if its relevant or not.
this are....
1) if p is p=8k+3 then if: 2ˆ[((p-3)/4)+1] = x (mod p) and if: xˆ2 =-2 (mod p) then p is prime
2) if p is p=8k+7 then if: 2ˆ[((p-3)/4)+1] = x (mod p) and if: xˆ2 = +2 (mod p) then p is prime
3) if p is p=8k+5 then if: 2ˆ[((p-1)/4)] = x (mod p) and if: xˆ2 = -1 (mod p) then p is prime
4: if p is p=8k+1 then if: 2ˆ[((p-1)/4)] = +-1 (mod p) then p is prime or a Fermat number
thank you for your time and waiting your answer, Miguel R.
miguelangelreybonet@yahoo.es
miguelrey is offline   Reply With Quote
Old 2014-07-01, 21:37   #87
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

838410 Posts
Default

Quote:
Originally Posted by miguelrey View Post
hi, (sorry i dont speak english)
i demostrated a part of the theory of numbers, but i dont know, if its relevant or not.
this are....
1) if p is p=8k+3 then if: 2ˆ[((p-3)/4)+1] = x (mod p) and if: xˆ2 =-2 (mod p) then p is prime
2) if p is p=8k+7 then if: 2ˆ[((p-3)/4)+1] = x (mod p) and if: xˆ2 = +2 (mod p) then p is prime
3) if p is p=8k+5 then if: 2ˆ[((p-1)/4)] = x (mod p) and if: xˆ2 = -1 (mod p) then p is prime
4: if p is p=8k+1 then if: 2ˆ[((p-1)/4)] = +-1 (mod p) then p is prime or a Fermat number
thank you for your time and waiting your answer, Miguel R.
miguelangelreybonet@yahoo.es
Hola Miguel,

Esto no es exactamente lo que este tema se trata. Este tema es acerca de cuando decir p, p+2, p+6 y p+8 podría ser primer por ejemplo.Me identifico con él, posiblemente. Pero voy a tener que mirar en más. Estoy utilizando Google Translate y el final de su correo electrónico para tratar de conseguir algo que se puede leer más fácil. Aunque supongo que debería utilizar el disctionary-español Inglés que tengo. Intenté aprender español de una vez.

Last fiddled with by science_man_88 on 2014-07-01 at 21:38
science_man_88 is offline   Reply With Quote
Old 2015-02-05, 08:34   #88
MattcAnderson
 
MattcAnderson's Avatar
 
"Matthew Anderson"
Dec 2010
Oregon, USA

80010 Posts
Wink my number theory achievement February 2015

Hi math people,

I want to mention my personal webpage -

https://sites.google.com/site/mattc1anderson/home-1

and especially, under a few layers -

http://oeis.org/A022006

I have put considerable effort into some OEIS entries.
See my prime constellations project.

Regards,
Matt
MattcAnderson is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Prime Constellations 2 MattcAnderson MattcAnderson 28 2021-05-23 14:40
(M48) NEW MERSENNE PRIME! LARGEST PRIME NUMBER DISCOVERED! dabaichi News 571 2020-10-26 11:02
Prime constellations? CRGreathouse Software 10 2017-07-14 09:45
disk died, prime work lost forever? where to put prime? on SSD or HDD? emily PrimeNet 3 2013-03-01 05:49
The 40th known Mersenne prime, 220996011-1 is not PRIME! illman-q Miscellaneous Math 33 2004-09-19 05:02

All times are UTC. The time now is 00:19.


Sat Jul 17 00:19:46 UTC 2021 up 49 days, 22:07, 1 user, load averages: 1.98, 1.68, 1.61

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.