[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A080945
Numbers having more than two divisors that are also suffixes in binary representation.
5
15, 27, 30, 39, 45, 51, 54, 60, 63, 75, 78, 85, 87, 90, 99, 102, 108, 111, 119, 120, 123, 125, 126, 135, 147, 150, 153, 156, 159, 165, 170, 171, 174, 175, 180, 183, 187, 195, 198, 204, 205, 207, 216, 219, 221, 222, 231, 238, 240, 243, 245, 246, 250, 252, 255
OFFSET
1,1
COMMENTS
A080942(a(n))>2; complement of A080944;
A080942(a(n))-2 < A070824(a(n)).
LINKS
PROG
(Haskell)
a080945 n = a080945_list !! (n-1)
a080945_list = filter ((> 2) . a080942) [1..]
-- Reinhard Zumkeller, Mar 27 2014
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Feb 25 2003
STATUS
approved