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!)
A244248 Semiprimes whose binary representation, read in decimal, is prime. 1
185, 247, 253, 295, 329, 355, 453, 471, 533, 565, 583, 671, 689, 703, 755, 781, 785, 815, 841, 989, 1037, 1099, 1121, 1159, 1189, 1207, 1219, 1329, 1403, 1441, 1473, 1541, 1555, 1643, 1661, 1703, 1751, 1793, 1797, 1819, 1821, 1853, 1921, 1941, 1957, 2123, 2189 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Semiprimes in A036952.
Intersection of A001358 and A036952.
LINKS
EXAMPLE
a(1) = 185 = 5 * 37 which is semiprime. Binary representation of 185 = 10111001 which is prime.
a(2) = 247 = 13 * 19 which is semiprime. Binary representation of 247 = 11110111 which is prime.
MAPLE
with(numtheory):A244248 := proc() local a; a:=convert(n, binary); if bigomega(n)=2 and isprime(a) then RETURN (n) ; fi; end: seq(A244248 (), n=1..5000);
MATHEMATICA
A244248={}; Do[If[PrimeOmega[n]==2&&PrimeQ[FromDigits[IntegerDigits[n, 2]]], AppendTo[A244248, n]], {n, 5000}]; A244248
CROSSREFS
Sequence in context: A362096 A157297 A156059 * A129311 A252272 A247529
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Jun 23 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 May 5 10:46 EDT 2024. Contains 372275 sequences. (Running on oeis4.)