mersenneforum.org  

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

Reply
 
Thread Tools
Old 2019-04-30, 18:09   #12
lukerichards
 
lukerichards's Avatar
 
"Luke Richards"
Jan 2018
Birmingham, UK

28810 Posts
Default

Quote:
Originally Posted by enzocreti View Post
1 2

This is the vector of the prime gap records...who wants could find other gaporial primes with plus one ga#+1
I'll have a look when I get home, if others don't beat me to it.

Last fiddled with by lukerichards on 2019-04-30 at 18:10
lukerichards is offline   Reply With Quote
Old 2019-04-30, 20:36   #14
lukerichards
 
lukerichards's Avatar
 
"Luke Richards"
Jan 2018
Birmingham, UK

25·32 Posts
Default

ga1#+5 PRIME
ga2#+5 PRIME
ga3#+5 PRIME
ga4#+5 PRIME
ga5#+5
ga6#+5
ga7#+5
ga8#+5
ga9#+5
ga10#+5
ga11#+5
ga12#+5
ga13#+5
ga14#+5 PRIME*
ga15#+5
ga16#+5
ga17#+5
ga18#+5
ga19#+5
ga20#+5
ga21#+5
ga22#+5
ga23#+5
ga24#+5
ga25#+5
ga26#+5
ga27#+5
ga28#+5
ga29#+5
ga30#+5
ga31#+5
ga32#+5
ga33#+5
ga34#+5
ga35#+5
ga36#+5
ga37#+5
ga38#+5
ga39#+5
ga40#+5
ga41#+5
ga42#+5
ga43#+5
ga44#+5
ga45#+5
ga46#+5
ga47#+5
ga48#+5
ga49#+5
ga50#+5
ga51#+5
ga52#+5
ga53#+5
ga54#+5
ga55#+5
ga56#+5
ga57#+5
ga58#+5
ga59#+5
ga60#+5
ga61#+5
ga62#+5
ga63#+5
ga64#+5
ga65#+5
ga66#+5
ga67#+5
ga68#+5
ga69#+5
ga70#+5
ga71#+5
ga72#+5
ga73#+5
ga74#+5
ga75#+5
ga76#+5
ga77#+5

* this prime was added to the factordb by the act of searching for it.

All others are composite.

Last fiddled with by lukerichards on 2019-04-30 at 20:42 Reason: ADDED PRIMES
lukerichards is offline   Reply With Quote
Old 2019-04-30, 21:39   #15
Dylan14
 
Dylan14's Avatar
 
"Dylan"
Mar 2017

3·193 Posts
Default

Quote:
Originally Posted by Dylan14 View Post
Although it isn’t quite what you are considering, you may want to look at 081411 (partial product of all prime gaps) and consider finding a way to make primes from that sequence (not directly, of course, the only prime in that sequence is 2).

For example, using Mathematica we define the gaporial function as follows:
Code:
Gaporial[x_] := 
 Piecewise[{{1, 
    x == 0}, {Product[Prime[i + 1] - Prime[i], {i, 1, x}], 
    x > 0 && x \[Element] Integers}, {Product[
     Prime[i + 1] - Prime[i], {i, 1, Floor[x]}], 
    x > 0 && x \[NotElement] Integers}}]
which, when run with arguments 1 through 10, reproduces https://oeis.org/A081411. (This can be done with
Code:
Table[Gaporial[n], {n, 1, 10}]
)
Then, if we want to find primes related to this, we simply come up with a form. In the example I did gaporials+1:
Code:
If[PrimeQ[Gaporial[#] + 1], Print[#]] & /@ Range[100]
which gives the argument n such that gaporial(n)+1 is prime. This generates the following sequence: 1,2,3,4,7,10,15,17,19,35,57,59.
Dylan14 is offline   Reply With Quote
Old 2019-05-01, 08:09   #16
enzocreti
 
Mar 2018

21216 Posts
Default ga#+1 primes

so the ga#+1 primes known are 3,7,43,967,5080977427

their sum is a prime!
3+4 is prime
7+4 is prime
43+4 is prime
967+4 is prime
5080977427+4 is prime

3+7+43+967+5080977427 is prime!
enzocreti is offline   Reply With Quote
Old 2019-05-01, 11:32   #17
enzocreti
 
Mar 2018

2×5×53 Posts
Default prime

10*(5080978447)+1 is prime!
enzocreti is offline   Reply With Quote
Old 2019-08-10, 23:03   #18
Dylan14
 
Dylan14's Avatar
 
"Dylan"
Mar 2017

3·193 Posts
Default

Quote:
Originally Posted by Dylan14 View Post
For example, using Mathematica we define the gaporial function as follows:
Code:
Gaporial[x_] := 
 Piecewise[{{1, 
    x == 0}, {Product[Prime[i + 1] - Prime[i], {i, 1, x}], 
    x > 0 && x \[Element] Integers}, {Product[
     Prime[i + 1] - Prime[i], {i, 1, Floor[x]}], 
    x > 0 && x \[NotElement] Integers}}]
which, when run with arguments 1 through 10, reproduces https://oeis.org/A081411. (This can be done with
Code:
Table[Gaporial[n], {n, 1, 10}]
)
Then, if we want to find primes related to this, we simply come up with a form. In the example I did gaporials+1:
Code:
If[PrimeQ[Gaporial[#] + 1], Print[#]] & /@ Range[100]
which gives the argument n such that gaporial(n)+1 is prime. This generates the following sequence: 1,2,3,4,7,10,15,17,19,35,57,59.
I have continued the search of this form to n = 10000 using a mix of Mathematica (to generate the numbers) and pfgw (to test). Gaporial(n)+1 is (probably) prime for the following n:
Code:
1
2
3
4
7
10
15
17
19
35
57
59
121
142
204
296
307
400
410
480
573
591
730
904
1212
1436
1710
2178
2307
2390
4949
5949
6952
Dylan14 is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Mersenne Primes p which are in a set of twin primes is finite? carpetpool Miscellaneous Math 3 2017-08-10 13:47
Distribution of Mersenne primes before and after couples of primes found emily Math 34 2017-07-16 18:44
Conjecture about Mersenne primes and non-primes v2 Mickey1 Miscellaneous Math 1 2013-05-30 12:32
A conjecture about Mersenne primes and non-primes Unregistered Information & Answers 0 2011-01-31 15:41
possible primes (real primes & poss.prime products) troels munkner Miscellaneous Math 4 2006-06-02 08:35

All times are UTC. The time now is 04:55.


Sat Jul 17 04:55:49 UTC 2021 up 50 days, 2:43, 1 user, load averages: 1.79, 1.92, 2.02

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.