login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A114101
Begin with prime(1), then prime(2). After prime(j) write all the primes of the form prime(i) concatenated with prime(j) with i<j; then prime(j+1).
1
2, 3, 23, 5, 7, 37, 11, 211, 311, 13, 313, 17, 317, 1117, 19, 719, 1319, 23, 223, 523, 1123, 1723, 29, 229, 1129, 31, 331, 1931, 37, 337, 3137, 41, 241, 541, 1741, 2341, 43, 743, 47, 347, 547, 1747, 2347, 53, 353, 1153, 1753, 2953, 4153, 59, 359
OFFSET
1,1
LINKS
EXAMPLE
11 is followed by 211, 311 (511 and 711 are not primes); then 13.
PROG
(Python)
from itertools import islice
from sympy import isprime, nextprime
def agen(): # generator of terms
p, s = 2, []
while True:
yield p; sp = str(p); s.append(sp); p = nextprime(p)
yield from filter(isprime, (int("".join(si + sp)) for si in s))
print(list(islice(agen(), 51))) # Michael S. Branicky, Jun 23 2023
CROSSREFS
Cf. A114007.
Sequence in context: A361669 A191648 A130846 * A114007 A282795 A071819
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Nov 20 2005
EXTENSIONS
More terms from Amy Postell (arp179(AT)psu.edu), Feb 02 2006
Offset changed to 1 by Michael S. Branicky, Jun 23 2023
STATUS
approved