cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A080947 Numbers having more than three divisors that are also suffixes in binary representation.

This page as a plain text file.
%I A080947 #9 May 02 2014 00:25:07
%S A080947 63,126,231,252,255,363,399,462,495,504,510,567,627,726,735,759,798,
%T A080947 845,891,903,924,975,990,1008,1020,1023,1071,1134,1215,1239,1254,1365,
%U A080947 1407,1419,1452,1455,1470,1518,1575,1596,1690,1695,1743,1755,1782,1806,1848
%N A080947 Numbers having more than three divisors that are also suffixes in binary representation.
%C A080947 A080942(a(n))>3.
%H A080947 Reinhard Zumkeller, <a href="/A080947/b080947.txt">Table of n, a(n) for n = 1..1000</a>
%e A080947 a(4) = 252: divisors(252) = {1, 2, 3, 4->'100', 6, 7, 9, 12->'1100', 14, 18, 21, 28->'11100', 36, 42, 63, 84, 126, 252->'11111100'}: A080946(252) = #{4, 12, 28, 252} = 4;
%e A080947 a(15) = 735: divisors(735) = {1->'1', 3->'11', 5, 7->'111', 15->'1111', 21, 35, 49, 105, 147, 245, 735->'1011011111'}: A080942(735) = #{1, 3, 7, 15, 735} = 5.
%o A080947 (Haskell)
%o A080947 a080947 n = a080947_list !! (n-1)
%o A080947 a080947_list = filter ((> 3) . a080942) [1..]
%o A080947 -- _Reinhard Zumkeller_, Mar 27 2014
%Y A080947 Cf. A080946, A007088, A080940, A080941.
%K A080947 nonn,base
%O A080947 1,1
%A A080947 _Reinhard Zumkeller_, Feb 25 2003