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!)
A244862 Pairs of prime numbers (p,q) starting with a(1)=2 such that p U q (where U denotes concatenation) is a prime number and a(n) is always extended with the smallest available prime not yet present in the sequence. 0
2, 3, 5, 23, 7, 19, 11, 17, 13, 61, 29, 53, 31, 37, 41, 59, 43, 73, 47, 83, 67, 79, 71, 167, 89, 101, 97, 103, 107, 137, 109, 139, 113, 131, 127, 157, 149, 173, 151, 163, 179, 233, 181, 193, 191, 227, 197, 257, 199, 211, 223, 229, 239, 251, 241, 271, 263, 269, 277 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The first pairs are (2,3),(5,23),(7,19),(11,17),(13,61),(29,53)=> 23, 523, 719, 1117, 1361, 2953, ... are prime numbers.
LINKS
MAPLE
with(numtheory):nn:=60:lst:={2, 3}: printf ( "%d %d \n", 2, 3):
for a from 2 to nn do:
p:=ithprime(a):ii:=0:
for b from 1 to nn while(ii=0)do:
q:=ithprime(b):s:=p*10^(length(q))+q:
if type(s, prime)=true and lst intersect {p, q}={}
then
lst:=lst union {p, q}:ii:=1:printf(`%d, `, p):printf(`%d, `, q):
else
fi:
od:
od:
CROSSREFS
Sequence in context: A339228 A013639 A047995 * A338403 A024782 A024775
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Jul 25 2014
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 May 12 14:10 EDT 2024. Contains 372480 sequences. (Running on oeis4.)