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 A316409 #9 Jul 02 2018 16:31:35 %S A316409 1,3,10,33,98,291,826,2320,6342,17133,45504,119580,310416,798196, %T A316409 2033289,5136803,12878647,32056022,79277444,194822462,476101571, %U A316409 1156995495,2797803485,6731961588,16126628466,38459836055,91355046531,216126089962,509445131238 %N A316409 Number of multisets of exactly eight nonempty binary words with a total of n letters such that no word has a majority of 0's. %H A316409 Alois P. Heinz, <a href="/A316409/b316409.txt">Table of n, a(n) for n = 8..1000</a> %F A316409 a(n) = [x^n y^8] 1/Product_{j>=1} (1-y*x^j)^A027306(j). %p A316409 g:= n-> 2^(n-1)+`if`(n::odd, 0, binomial(n, n/2)/2): %p A316409 b:= proc(n, i) option remember; series(`if`(n=0 or i=1, x^n, add( %p A316409 binomial(g(i)+j-1, j)*b(n-i*j, i-1)*x^j, j=0..n/i)), x, 9) %p A316409 end: %p A316409 a:= n-> coeff(b(n$2), x, 8): %p A316409 seq(a(n), n=8..36); %Y A316409 Column k=8 of A292506. %Y A316409 Cf. A027306, A292549. %K A316409 nonn %O A316409 8,2 %A A316409 _Alois P. Heinz_, Jul 02 2018