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!)
A125663 Numbers such that the left half of the digits form a prime and the right half do not. 0
20, 21, 24, 26, 28, 29, 30, 31, 34, 36, 38, 39, 50, 51, 54, 56, 58, 59, 70, 71, 74, 76, 78, 79, 200, 201, 204, 206, 208, 209, 210, 211, 214, 216, 218, 219, 220, 221, 224, 226, 228, 229, 230, 231, 234, 236, 238, 239, 240, 241, 244, 246, 248, 249, 250, 251, 254, 256 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If n is odd > 1 then the middle digit is ignored.
LINKS
FORMULA
The left half of an n-digit number is the first floor(n/2) digits. The right half of an n-digit number is the last floor(n/2) digits.
EXAMPLE
20 is the first number with this property.
PROG
(PARI) leftprime(n) = { local(x, ln, y, lp, rp); for(x=1, n, y=Str(x); if(x > 9, ln=floor(length(y)/2), ln=1); lp = eval(left(y, ln)); rp = eval(right(y, ln)); if(isprime(lp)&& !isprime(rp), print1(x", ") ) ) }
CROSSREFS
Cf. A125523.
Sequence in context: A326678 A347469 A030605 * A241850 A138601 A278582
KEYWORD
base,easy,nonn
AUTHOR
Cino Hilliard, Jan 29 2007
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 18 08:27 EDT 2024. Contains 371769 sequences. (Running on oeis4.)