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!)
A068811 Numbers k such that k and its 10's complement (10^d-k, where d is the number of digits in k) are both primes 10

%I #49 Dec 18 2022 11:22:51

%S 3,5,7,11,17,29,41,47,53,59,71,83,89,97,113,137,173,179,191,227,239,

%T 257,281,317,347,353,359,383,401,431,443,479,491,509,521,557,569,599,

%U 617,641,647,653,683,719,743,761,773,809,821,827,863,887,911,929,941

%N Numbers k such that k and its 10's complement (10^d-k, where d is the number of digits in k) are both primes

%C In other words, primes p such that the difference between the smallest power of 10 exceeding p and p is prime. - _Zak Seidov_, Feb 27 2004

%C a(n) = 10^d - A145985(n), where d is the number of digits in A145985(n). - _N. J. A. Sloane_, Dec 18 2022

%C The only twin prime pairs in the sequence are (3,5) and (5,7). This is easily seen by mod 6 congruences using 10^k = 4 (mod 6). - _Giuseppe Coppoletta_, Jul 24 2016

%H N. J. A. Sloane, <a href="/A068811/b068811.txt">Table of n, a(n) for n = 1..20000</a> [First 1000 terms from Vincenzo Librandi]

%e 47 is a prime; the smallest power of 10 exceeding 47 is 100 and 100 - 47 = 53 is prime. Therefore 47 is in the sequence.

%e 641 is a term as 641 and 1000-641 = 359 are primes.

%p a:=[];

%p for i from 1 to 1000 do

%p p:=ithprime(i); d:=length(p); q:=10^d-p;

%p if isprime(q) then a:=[op(a),p]; fi; od:

%p a; # _N. J. A. Sloane_, Dec 18 2022

%t Select[Prime[Range[160]], PrimeQ[10^(Floor[Log[10, # ]] + 1) - # ] &] (* _Stefan Steinerberger_, Jun 15 2007 *)

%o (PARI) is_A068811(p)= isprime(10^#Str(p)-p) & isprime(p) \\ _M. F. Hasler_, May 01 2012

%o (PARI) for(d=1, 4, forprime(p=10^(d-1), 10^d, if(isprime(10^d-p), print1(p", ")))) \\ _Charles R Greathouse IV_, May 01 2012

%o (Sage) [p for p in prime_range(100) if is_prime(10^p.ndigits()-p)] # _Giuseppe Coppoletta_, Jul 24 2016

%Y Cf. A145985.

%K easy,nonn,base

%O 1,1

%A _Amarnath Murthy_, Mar 07 2002

%E Corrected by _Jason Earls_, May 25 2002

%E Edited by _N. J. A. Sloane_, Sep 18 2008 at the suggestion of _R. J. Mathar_

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 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)