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!)
A242550 Prime numbers that will become composite after removing any group of initial digits. 1
19, 29, 59, 79, 89, 109, 139, 149, 199, 239, 269, 349, 409, 439, 449, 499, 509, 569, 599, 709, 739, 769, 809, 839, 1009, 1039, 1049, 1069, 1249, 1399, 1549, 1609, 1669, 1699, 1949, 1999, 2039, 2069, 2099, 2309, 2339, 2399, 2539, 2549, 2609, 2699, 2749, 2909 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
127 is not a term because 7 is prime.
139 is a term because 139 is prime but 39 and 9 are composite.
PROG
(PARI) arecomp(p) = {nbd = #digits(p); for (i=1, nbd-1, if (isprime(q=(p % 10^i)) || (q==1), return(0)); ); return (1); }
isokp(p) = (p>10) && isprime(p) && arecomp(p); \\ Michel Marcus, May 17 2014
CROSSREFS
Cf. A242265.
Subsequence of A030433 and A242265.
Sequence in context: A242265 A004618 A030433 * A141311 A090148 A348561
KEYWORD
nonn,base
AUTHOR
J. Lowell, May 17 2014
EXTENSIONS
More terms from Michel Marcus, May 17 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 24 08:59 EDT 2024. Contains 371935 sequences. (Running on oeis4.)