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”).

A330699
Primes p such that the base-10 concatenation p||(p+1)||p is prime.
1
7, 11, 13, 37, 41, 47, 59, 61, 71, 79, 83, 101, 103, 149, 181, 191, 193, 229, 241, 307, 317, 347, 359, 373, 383, 409, 439, 467, 487, 509, 569, 691, 823, 839, 857, 907, 941, 1061, 1069, 1091, 1109, 1123, 1181, 1193, 1303, 1423, 1447, 1487, 1499, 1579, 1601, 1697, 1777, 1831, 1871, 1931, 1949, 1979
OFFSET
1,1
LINKS
EXAMPLE
a(3)=13 is a member because 13 and 131413 are primes.
MAPLE
f:= proc(n) local d; d:=10^(ilog10(n)+1);
n*(d^2+d+1)+d
end proc:
select(t -> isprime(t) and isprime(f(t)), [seq(i, i=3..10000, 2)]);
CROSSREFS
Sequence in context: A235478 A045459 A322172 * A084457 A045460 A334092
KEYWORD
nonn,base
AUTHOR
Robert Israel, Dec 26 2019
STATUS
approved