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!)
A174034 The smallest prime p such that the double-concatenation prime(n) // prime(n+1) // p is a prime number. 2
3, 3, 7, 19, 17, 7, 17, 7, 3, 23, 11, 11, 11, 17, 3, 3, 7, 3, 11, 17, 29, 19, 13, 7, 37, 7, 23, 37, 7, 23, 7, 7, 7, 11, 7, 53, 29, 31, 31, 13, 11, 17, 7, 11, 11, 29, 23, 47, 7, 7, 7, 13, 11, 19, 67, 19, 13, 101, 59, 13, 13, 31, 17, 23, 7, 13, 29, 73, 29, 7 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
It is conjectured that a(n) = 3 for infinitely many n.
LINKS
EXAMPLE
n=1: 2 // 3 // 3 = 233, which is prime, so a(1) = 3.
n=2: 3 // 5 // 2 = 352, which is not prime, but 3 // 5 // 3 = 353 is, so a(2) = 3.
PROG
(Sage)
concat = lambda xx: Integer(''.join(map(str, xx)))
A174034 = lambda x: next((p for p in Primes() if is_prime(concat([nth_prime(x), nth_prime(x+1), p])))) # D. S. McNeil, Dec 02 2010
(PARI) A174034(n)={ n=eval(Str(prime(n), prime(n+1))); for( d=1, 99, n*=10; forprime( p=10^(d-1), 10^d, isprime(n+p) & return(p)))} \\ M. F. Hasler, Dec 01 2010
CROSSREFS
Sequence in context: A221269 A202047 A036574 * A081486 A097334 A214496
KEYWORD
base,nonn
AUTHOR
Eva-Maria Zschorn (e-m.zschorn(AT)zaschendorf.km3.de), Mar 06 2010
EXTENSIONS
Edited and terms checked by D. S. McNeil, Dec 01 2010
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)