mersenneforum.org  

Go Back   mersenneforum.org > Fun Stuff > Puzzles

Reply
 
Thread Tools
Old 2014-09-24, 19:17   #78
davar55
 
davar55's Avatar
 
May 2004
New York City

2·29·73 Posts
Default

Quote:
Originally Posted by J F View Post
a(20) neares 450k digits, still nothing
a(196) finished with a 312306-digit PRP
Re: a(20) at 450K: what's the probability at this point that
it will reach or exceed 1M digits ? If so, how expensive will
it be to check that far ?
davar55 is offline   Reply With Quote
Old 2014-09-24, 21:18   #79
J F
 
J F's Avatar
 
Sep 2013

23×7 Posts
Default

Quote:
Originally Posted by davar55 View Post
Re: a(20) at 450K: what's the probability at this point that
it will reach or exceed 1M digits ? If so, how expensive will
it be to check that far ?
Quick and dirty calculation, chance for (at least) one PRP from
450K to 500K 4-5%, 500K to 1M ballpark 25%.
That doesn't sound too bad, but the required core-hours ARE bad!
With PFGW a PRP-test at 450K digits takes ~2.5h on an older
non-AVX I5-750 core, 900K digits would be ~10h, a modern AVX-core
is a bit less than half that time.
Many thousand of them after TF (+TF time) - there you go.
J F is offline   Reply With Quote
Old 2014-10-01, 19:35   #80
davar55
 
davar55's Avatar
 
May 2004
New York City

2×29×73 Posts
Default

Thanks. Will this computation be continuing indefinitely, or is there
some software limit, or a time budget? I think we'll need a(20) to
have a satisfactory entry in oeis, if that's deemed ok.
davar55 is offline   Reply With Quote
Old 2014-11-29, 14:56   #81
davar55
 
davar55's Avatar
 
May 2004
New York City

423410 Posts
Default

Quote:
Originally Posted by ewmayer View Post
This would also appear to follow if the digits are normal, which is generally believed but as yet unproven.
If normality holds, the digits will further be "as random as can be", but note the above 2 properties will be true of all normal reals, which are (provably) a dense subset of the reals. Interestingly, the normals likely include both irrationals and transcendentals - for example, sqrt(2), pi and e are all generally believed (but not proven) to be normal.
I find it interesting that is far easier to prove that almost all reals are normal than to prove that a selected one, even one as well-studied as sqrt(2), is.
For pi, e and sqrt(2), is there any evidence beyond empirical observation of the so-far known digits that addresses
their normality, i.e. other than statistics? Are there any positive results toward this? I too "generally believe" they
are normal, but looking at the first say trillion digits of sqrt(2) is still subject to the law of small numbers considering
the infinity of its non-repetitiveness.
davar55 is offline   Reply With Quote
Old 2014-12-14, 15:59   #82
davar55
 
davar55's Avatar
 
May 2004
New York City

2×29×73 Posts
Default

I was very excited when I thought of the OP question. In attacking the
question by hand and with my calculator, I anticipated some very long
primes coming out of the digits of pi. Now I eagerly await a(20).
davar55 is offline   Reply With Quote
Old 2014-12-14, 18:50   #83
davar55
 
davar55's Avatar
 
May 2004
New York City

2×29×73 Posts
Default

In preparation for a possible oeis entry, and since the PRPs here were not posted,
could someone post a list of the first 99 (01 thru 99) elements of this sequence?

Each line as:

xxx -> #

where xxx is the index (001 thru 099) and
# is either the prime, PRP### followed by abcde.....vwxyz (the end digits), or "no such prime".

(If you want to improve on this format, fine.)
davar55 is offline   Reply With Quote
Old 2014-12-17, 11:07   #84
J F
 
J F's Avatar
 
Sep 2013

3816 Posts
Default

Quote:
Originally Posted by davar55 View Post
...and since the PRPs here were not posted...
??
Some outdated limits for the unfinished numbers and finished
#196 aside, what's wrong with the list in post 74?


Completely off topic: can someone recommend a program or
efficient way to cut down an arbitrary integer to a shorter
representation? Let's say I have a 1M digit number and want
it down to a 30? 20? chars term of form a*b^c+d.
As short as possible with 'reasonable' (minutes? no idea
about the complexity) CPU time.
Thanks in advance.
J F is offline   Reply With Quote
Old 2014-12-17, 11:31   #85
fivemack
(loop (#_fork))
 
fivemack's Avatar
 
Feb 2006
Cambridge, England

641910 Posts
Default

Obviously it will nearly always not be possible to get such a representation, but I'd be tempted to use the linear-forms stuff in Pari on log(N) and logs of enough small numbers to try to fit A,B,C, then figure out D by subtraction.

Code:
lp=[];forprime(p=2,200,lp=concat(lp,[log(p)]))
lindep(concat([log(861*136^997+142857)],lp))
312ms to recognise 85*53^2269-11 using primes up to 100 (with realprecision=500); 2152ms using primes up to 200; 5512ms for primes up to 300; you get a non-sparse vector if it didn't work.
fivemack is offline   Reply With Quote
Old 2014-12-17, 12:56   #86
axn
 
axn's Avatar
 
Jun 2003

22·3·421 Posts
Default

Quote:
Originally Posted by J F View Post
Completely off topic: can someone recommend a program or
efficient way to cut down an arbitrary integer to a shorter
representation? Let's say I have a 1M digit number and want
it down to a 30? 20? chars term of form a*b^c+d.
As short as possible with 'reasonable' (minutes? no idea
about the complexity) CPU time.
Thanks in advance.
Simple information-theoretic reasoning suggests what you want cannot be done (i.e, compressing an arbitrary integer). If it could be done, you've just found out the world's most efficient compression algorithm
axn is online now   Reply With Quote
Old 2014-12-17, 13:58   #87
J F
 
J F's Avatar
 
Sep 2013

23×7 Posts
Default

Shame - talk about obvious, I could have come up
with this myself...
I had some muddy thoughts similiar to Mr. Fivemack,
with X=a*b^c+d try to puzzle the logs together to
come close up to log(X) and the add/substract 'the rest'.
At this moment I just didn't think about that this is
trying to map a set 1:1 to a much smaller set.
*in the corner, with red ears*

Thanks for the replys
J F is offline   Reply With Quote
Old 2014-12-17, 20:18   #88
davar55
 
davar55's Avatar
 
May 2004
New York City

2·29·73 Posts
Default

Quote:
Originally Posted by J F View Post
??
Some outdated limits for the unfinished numbers and finished
#196 aside, what's wrong with the list in post 74?
...
Thanks in advance.
Your welcome (OP).
davar55 is offline   Reply With Quote
Reply



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 03:12.


Sat Jul 17 03:12:57 UTC 2021 up 50 days, 1 hr, 1 user, load averages: 1.15, 1.33, 1.32

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.