|
Search: id:A066064
|
|
|
| A066064 |
|
a(n) = pq in decimal notation where p = prime(n) and q is the smallest prime (A066065(n)) such that p.q is a prime. |
|
+0 2
|
|
| 23, 37, 53, 73, 113, 137, 173, 193, 233, 293, 313, 373, 4111, 433, 4723, 5323, 593, 613, 673, 7129, 733, 797, 8311, 8923, 977, 1013, 1033, 10711, 1093, 11311, 1277, 13147, 1373, 13913, 1493, 15131, 15731, 1637, 16729, 1733, 17911, 18119, 1913
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
LINKS
|
Harry J. Smith, Table of n, a(n) for n=1,...,1000
|
|
EXAMPLE
|
A000040(2) = 3 and as 32, 33 and 35 are composite, the next prime 7 = A066065(2) yields a(2) = 37.
|
|
PROGRAM
|
(PARI) digitsIn(x)= { local(d); if (x==0, return(1)); d=1 + log(x)\log(10); if (10^d == x, d++, if (10^(d-1) > x, d--)); return(d) } Concat(a, b)= { return(a*10^digitsIn(b) + b) } { for (n = 1, 1000, p=prime(n); q=2; while(!isprime(c=Concat(p, q)), q=nextprime(q + 1)); write("b066064.txt", n, " ", c) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Nov 09 2009]
|
|
CROSSREFS
|
Sequence in context: A019549 A129800 A105184 this_sequence A163759 A092622 A129351
Adjacent sequences: A066061 A066062 A066063 this_sequence A066065 A066066 A066067
|
|
KEYWORD
|
base,nonn,new
|
|
AUTHOR
|
Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Dec 01 2001
|
|
|
Search completed in 0.002 seconds
|