login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A052334 Record primes reached in A052333. 6
3, 5, 7, 19, 31, 43, 103, 223, 367, 463, 5503, 738197503 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Start with n=1, take 2n+1, if composite take 2n+1 again, keep going until you reach a prime. Repeat for n=2, 3... If prime is a record, add to sequence. If never reach a prime, skip that value of n.
a(13) is a 771-digit prime reached after 2552 iterations starting from 73. - Warut Roonguthai. This was proved to be a prime by Paul Jobling (Paul.Jobling(AT)WhiteCross.com) using PrimeForm and by Ignacio Larrosa Cañestro using Titanix (http://www.znz.freesurf.fr/pages/titanix.html). [Oct 30 2000]
LINKS
FORMULA
a(n) = A052333(A051914(n)). - Amiram Eldar, Jul 25 2019
MATHEMATICA
record = 2; Reap[For[n = 1, n <= 100, n++, k = n; While[ !PrimeQ[k = 2*k + 1]]; If[k > record, Print[k]; Sow[k]; record = k]]][[2, 1]] (* Jean-François Alcover, Jul 19 2013 *)
CROSSREFS
Sequence in context: A179687 A106919 A005850 * A373292 A322302 A154526
KEYWORD
nonn,nice
AUTHOR
Christian G. Bower, Dec 19 1999
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 12 17:45 EDT 2024. Contains 374251 sequences. (Running on oeis4.)