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!)
A235688 Semiprimes which remain semiprimes when the leftmost digit is removed. 3
14, 26, 34, 39, 46, 49, 69, 74, 86, 94, 106, 115, 121, 122, 133, 134, 146, 155, 158, 169, 177, 185, 187, 194, 206, 209, 214, 215, 221, 226, 235, 249, 262, 265, 274, 287, 291, 295, 309, 314, 321, 326, 334, 335, 339, 346, 355, 358, 362, 365, 377, 382, 386, 391 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
249 is in the sequence because 49 = 7*7.
MATHEMATICA
Select[Range[400], PrimeOmega[#]==PrimeOmega[Mod[#, 10^(IntegerLength[ #]-1)]] == 2&] (* Harvey P. Dale, Jun 07 2017 *)
PROG
(PARI)
list(lim)=my(v=List(), t); forprime(p=2, sqrt(lim), t=p; forprime(q=p, lim\t, listput(v, t*q))); vecsort(Vec(v)) \\ From A001358
delleft(a) = my(b, c); b=#Str(a); c=a\(10^(b-1)); a-c*(10^(b-1))
issemiprime(n) = n>0 && bigomega(n)==2
t=list(500); for(n=1, #t, if(issemiprime(delleft(t[n])), print1(t[n], ", ")))
CROSSREFS
Sequence in context: A323030 A005277 A079702 * A176274 A344872 A240227
KEYWORD
nonn,base
AUTHOR
Colin Barker, Jan 14 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 18 08:27 EDT 2024. Contains 371769 sequences. (Running on oeis4.)