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!)
A246801 Primes of the form: concatenation n with n-th composite integer. 2
4057, 4463, 4969, 5881, 6691, 86117, 90121, 129169, 131171, 136177, 160207, 162209, 169217, 193247, 225287, 252319, 265333, 272341, 280351, 288361, 297371, 327407, 346429, 355441, 388481, 410507, 429529, 451553, 456559, 474581 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
4057 is in the sequence since 40th composite integer is 57 and 4057 is prime.
MATHEMATICA
w = Select[Range[2, 800], ! PrimeQ[#] &]; Select[
Table[FromDigits[Flatten[{IntegerDigits[n], IntegerDigits[w[[n]]]}]], {n, 480}], PrimeQ]
PROG
(Python)
import sympy
from sympy import isprime
c = 0
for n in range(2, 10**5):
..if not isprime(n):
....c += 1
....p = str(c)+str(n)
....if isprime(p):
......print(int(p), end=', ')
# Derek Orr, Sep 18 2014
CROSSREFS
Sequence in context: A108006 A320207 A320216 * A020430 A163010 A069332
KEYWORD
nonn,base
AUTHOR
Jahangeer Kholdi, Sep 15 2014
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 19 04:35 EDT 2024. Contains 371782 sequences. (Running on oeis4.)