Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A105991 Semiprimes consisting of digits 0 and 1 only. 1
10, 111, 1011, 1101, 1111, 10001, 11101, 11111, 100001, 101011, 110101, 110111, 111001, 111011, 111101, 1000001, 1000011, 1000101, 1000111, 1001001, 1001101, 1001111, 1010001, 1010111, 1100111, 1101011, 1110001, 1110011, 1110101, 1111001, 1111111, 10000001 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This includes repunit semiprimes also.
Intersection of A001358 (semiprimes) and A007088 (numbers written in base 2). - Michel Marcus, Jan 27 2015
LINKS
EXAMPLE
a(3)=1011 is a term because 1011 is a semiprime and contain digits 0 and 1 only.
MAPLE
N:= 12: # to get all terms with at most N digits
cands[1]:= {1}:
for d from 2 to N do
cands[d]:= map(t -> (10*t, 10*t+1), cands[d-1])
od:
select(numtheory:-bigomega = 2, `union`(seq(cands[d], d=1..N)));
# if using Maple 11 or lower, uncomment the next line
# sort(convert(%, list)); # Robert Israel, Jan 27 2015
PROG
(PARI) isok(n) = (bigomega(n)==2) && (vecmax(digits(n)) <= 1); \\ Michel Marcus, Jan 27 2015
CROSSREFS
Sequence in context: A257344 A244859 A159551 * A284352 A103581 A290232
KEYWORD
base,nonn
AUTHOR
Shyam Sunder Gupta, Apr 29 2005
EXTENSIONS
Data corrected by Zak Seidov, Jan 27 2015
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 August 6 10:22 EDT 2024. Contains 374969 sequences. (Running on oeis4.)