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

A083989
Concatenation of prime k and its 10's complement is a prime.
4
3, 7, 17, 23, 29, 31, 41, 43, 53, 67, 71, 83, 109, 127, 139, 151, 173, 179, 197, 211, 229, 263, 271, 281, 307, 359, 463, 547, 557, 569, 587, 593, 673, 677, 683, 691, 701, 719, 727, 757, 769, 823, 839, 881, 883, 887, 907, 937, 983, 997, 1087, 1103, 1171, 1181
OFFSET
1,1
LINKS
EXAMPLE
43 belongs to this sequence as 4357 is also a prime.
MAPLE
g:= proc(n) local c; c:= 10^(1+ilog10(n))-n; n*10^(1+ilog10(c))+c end proc:
select(t -> isprime(t) and isprime(g(t)), [seq(i, i=3..10000, 2)]); # Robert Israel, Jul 03 2024
CROSSREFS
Sequence in context: A333291 A254680 A018411 * A374482 A277213 A152451
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, May 23 2003
EXTENSIONS
More terms from Jason Earls, Jun 01 2003
STATUS
approved