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!)
A229206 n-th prime that begins with prime(n). 1
2, 31, 59, 79, 1117, 1303, 1733, 1913, 2347, 2963, 3169, 3769, 41017, 43003, 47017, 53069, 59053, 61027, 67043, 71119, 73079, 79147, 83117, 89113, 97151, 101117, 103099, 107197, 109159, 113147, 127247, 131231, 137251, 139303, 149239, 151247, 157219, 163337 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Diagonal of triangle A114009.
LINKS
MAPLE
f:= proc(n) local p, q, d, count, i;
p:= ithprime(n); count:= 1;
for d from 1 do
q:= 10^d*p;
for i from count do
q:= nextprime(q);
if q > 10^d*(p+1) then break fi;
count:= count+1;
if count = n then return q fi;
od od;
end proc:
f(1):= 2:
map(f, [$1..100]); # Robert Israel, Jan 19 2023
PROG
(PARI) ok(np, dfp) = {dnp = digits(np); xdnp = vector(#dfp, id, dnp[id]); xdnp == dfp; }
findnextp(p, dfp) = {np = nextprime(p+1); while (! ok(np, dfp), np = nextprime(np+1)); np; }
a(n) = {p = fp = prime(n); dfp = digits(fp); for (k = 2, n, p = findnextp(p, dfp); ); p; } \\ Michel Marcus, Sep 16 2013
(Python)
from itertools import count
from sympy import isprime, prime
def a(n):
if n == 1: return 2
pn, c = prime(n), 1
for d in count(1):
pow10 = 10**d
base = pn * pow10
for i in range(1, pow10, 2):
t = base + i
if isprime(t): c += 1
if c == n: return t
print([a(n) for n in range(1, 41)]) # Michael S. Branicky, Jan 19 2023
CROSSREFS
Cf. A114009.
Sequence in context: A370157 A129900 A262834 * A105757 A091252 A031920
KEYWORD
base,nonn
AUTHOR
Michel Marcus, Sep 16 2013
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 21:51 EDT 2024. Contains 371781 sequences. (Running on oeis4.)