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!)
A173935 a(n) is the least prime that is the concatenation of two primes in exactly n different ways. 0
2, 23, 313, 3137, 233347, 739397, 379837313, 73932013313, 7399973479337 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
EXAMPLE
23 = 2 & 3, 313 = 3 & 13 and 31 & 3, etc.
MATHEMATICA
f[n_] := Block[{c = 0, id = IntegerDigits@n, k = 0}, len = Length@ id; While[ k < len, If[ Union@ PrimeQ[ FromDigits@# & /@ {id[[;; k + 1]], id[[k + 2 ;; ]]}] == {True}, c++ ]; k++ ]; c]; t = Table[0, {10}]; p = 2; While[p < 10^8, a = f@p; If[ t[[a]] == 0, t[[a]] = p; Print[{a, p}]]; p = NextPrime@ p]
CROSSREFS
Sequence in context: A294161 A088641 A077203 * A216549 A091693 A276025
KEYWORD
base,more,nonn
AUTHOR
Robert G. Wilson v, Mar 02 2010
EXTENSIONS
a(6) from Robert G. Wilson v, Mar 04 2010
a(7) from Donovan Johnson, Nov 09 2010
a(8) from Giovanni Resta, Mar 04 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 17:51 EDT 2024. Contains 371797 sequences. (Running on oeis4.)