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!)
A354748 a(n) is the prime reached after A354747(n) steps when repeatedly applying the map x -> 3*x+2 to 2*n-1, or 0 if no prime is ever reached. 2
5, 11, 17, 23, 29, 107, 41, 47, 53, 59, 197, 71, 233, 83, 89, 863, 101, 107, 113, 359, 2480057, 131, 137, 431, 149, 467, 4373, 167, 173, 179, 557, 191, 197, 5507, 1889, 647, 1997, 227, 233, 239, 2213, 251, 257, 263, 269, 827, 281, 863, 293, 2699, 2753, 311, 317 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Is a(100943) = 0?
If not 0, a(100943) >= 10^10000. - Michael S. Branicky, Jun 07 2022
LINKS
PROG
(PARI) a(n) = my(x=2*n-1); while(1, x=3*x+2; if(ispseudoprime(x), return(x)))
(Python)
from sympy import isprime
def f(x): return 3*x + 2
def a(n):
fn, c = f(2*n-1), 1
while not isprime(fn): fn, c = f(fn), c+1
return fn
print([a(n) for n in range(1, 54)]) # Michael S. Branicky, Jun 07 2022
CROSSREFS
Sequence in context: A063909 A181575 A335070 * A194384 A287305 A189938
KEYWORD
nonn
AUTHOR
Felix Fröhlich, Jun 06 2022
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 April 25 16:23 EDT 2024. Contains 371989 sequences. (Running on oeis4.)