login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A105347 Concatenation of the largest and the smallest n-digit primes (in that order). 0
72, 9711, 997101, 99731009, 9999110007, 999983100003, 99999911000003, 9999998910000019, 999999937100000007, 99999999671000000007, 9999999997710000000019, 999999999989100000000003 (list; graph; refs; listen; history; internal format)
OFFSET

0,1

LINKS

Chris Caldwell, The First 10,000 Primes.

EXAMPLE

The largest and smallest 1-digit primes are 7 and 2, so the first term is 72.

The largest and smallest 2-digit primes are 97 and 11, so the second term is 9711.

MAPLE

for n from 0 to 30 do for m from 1 to 10^(n+1)-1 do if isprime(10^(n+1) - m) then printf(`%d`, 10^(n+1)-m); break; fi: od: for m from 1 to 10^(n+1)-1 do if isprime(10^n + m) then printf(`%d`, 10^n+m); break; fi: od: printf(`, `): od: (Sellers)

CROSSREFS

Cf. A104206.

Sequence in context: A119750 A178635 A093272 * A093236 A146500 A048544

Adjacent sequences:  A105344 A105345 A105346 * A105348 A105349 A105350

KEYWORD

nonn,base

AUTHOR

Parthasarathy Nambi (PachaNambi(AT)yahoo.com), Apr 30 2005

EXTENSIONS

More terms from James A. Sellers (sellersj(AT)math.psu.edu), May 02 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 11:42 EST 2012. Contains 206011 sequences.