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!)
A103523 Concatenations of pairs of primes that differ by 100. 5
3103, 7107, 13113, 31131, 37137, 67167, 73173, 79179, 97197, 127227, 139239, 151251, 157257, 163263, 181281, 193293, 211311, 283383, 331431, 349449, 367467, 379479, 409509, 421521, 457557, 463563, 487587, 499599, 541641, 547647, 577677 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Integers in this sequence can never be prime, as, starting from the second one, they are all multiples of 3.
LINKS
FORMULA
List: concatenate(p, p+100) iff p and p+100 are primes.
EXAMPLE
9191019 is in this sequence because 919 is prime, 919+100 = 1019 is prime and 9191019 is the concatenation of those two primes differing by 100.
MAPLE
f:= proc(n) if isprime(n) and isprime(n+100) then 10^(1+ilog10(n+100))*n+n+100 fi end proc:
map(f, [3, seq(i, i=7..1000, 6)]); # Robert Israel, Dec 07 2015
MATHEMATICA
FromDigits[Join@@IntegerDigits/@{#, #+100}]&/@Select[Prime@Range@200, PrimeQ[#+100]&] (* Giorgos Kalogeropoulos, Jul 04 2021 *)
PROG
(Python)
from sympy import isprime, primerange as prange
def auptop(lim):
return [int(str(p)+str(p+100)) for p in prange(2, lim+1) if isprime(p+100)]
print(auptop(577)) # Michael S. Branicky, Jul 04 2021
CROSSREFS
Sequence in context: A187305 A236121 A252884 * A345519 A234265 A090056
KEYWORD
base,easy,nonn
AUTHOR
Jonathan Vos Post, Mar 21 2005
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 July 31 16:05 EDT 2024. Contains 374802 sequences. (Running on oeis4.)