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.
%I A101417 #13 Jan 16 2019 20:30:55 %S A101417 1,0,0,1,0,1,2,1,1,3,3,3,6,5,6,10,9,12,17,17,22,28,30,37,48,52,62,78, %T A101417 86,103,127,141,166,201,227,266,317,358,417,492,560,647,757,860,991, %U A101417 1153,1309,1503,1738,1971,2257,2594,2941,3356,3843,4351,4948,5644,6382,7240 %N A101417 Number of partitions of n into parts without powers of 2. %H A101417 Alois P. Heinz, <a href="/A101417/b101417.txt">Table of n, a(n) for n = 0..10000</a> %F A101417 G.f.: Product_{j>=1} (1-x^(2^j)) / Product_{i>=2} (1-x^i). - _Emeric Deutsch_, Mar 29 2006 %e A101417 a(12) = #{3+3+3+3, 6+3+3, 6+6, 7+5, 9+3, 12} = 6. %e A101417 From _Gus Wiseman_, Jan 07 2019: (Start) %e A101417 The a(3) = 1 through a(14) = 5 integer partitions (A = 10, ..., E = 14): %e A101417 (3) (5) (6) (7) (53) (9) (A) (B) (C) (D) (E) %e A101417 (33) (63) (55) (65) (66) (76) (77) %e A101417 (333) (73) (533) (75) (A3) (95) %e A101417 (93) (553) (B3) %e A101417 (633) (733) (653) %e A101417 (3333) (5333) %e A101417 (End) %p A101417 g:= product(1-x^(2^j),j=0..15)/product(1-x^i,i=1..75): gser:= series(g, x=0,62): seq(coeff(gser,x,n),n=0..59); # _Emeric Deutsch_, Mar 29 2006 %t A101417 Table[Length[Select[IntegerPartitions[n],And@@Not/@IntegerQ/@Log[2,#]&]],{n,20}] (* _Gus Wiseman_, Jan 07 2019 *) %Y A101417 Cf. A000041, A018819, A000123. %Y A101417 Cf. A087897, A102430, A276431, A321346, A323053, A323092, A323093. %K A101417 nonn %O A101417 0,7 %A A101417 _Reinhard Zumkeller_, Jan 16 2005