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 A115752 #12 Jun 20 2013 08:43:47 %S A115752 0,0,3,4,15,81,168,540,2271,5365,16698,63229,159250,489048,1749933, %T A115752 4576140,13955895,48211389,129211818,392441049,1323741156,3609608838, %U A115752 10933915743,36252591813,100126350090,302737691646,990855646563 %N A115752 Number of words of length n+1 created with the letters a,b,c with more c's than b's and more b's than a's. %C A115752 Also, if n+1 voters vote for one of the three candidates (A, B, or C) in an election, a(n) is the number of possible ballot results in which candidate C gets more votes than candidate B and candidate B gets more votes than candidate A. We note that the number of all possible ballot results is 3^(n+1). Hence, if all three candidates are equally-likely to get a random voter's vote, the probability of no ties among any of the candidates is 3!*a(n)/3^(n+1). - _Dennis P. Walsh_, Jun 19 2013 %H A115752 Alois P. Heinz, <a href="/A115752/b115752.txt">Table of n, a(n) for n = 0..1000</a> %H A115752 Mike Zabrocki, <a href="http://garsia.math.yorku.ca/~zabrocki/math5020f05/OLEISexercises.pdf">Math 5020, York University</a> %F A115752 E.g.f.: (t(1)^3-3*t(1)*t(2)+2*t(3))/6 where t(1)=hypergeom([],[],x), t(2)=hypergeom([],[1],x^2) and t(3)=hypergeom([],[1,1],x^3). - _Vladeta Jovovic_, Sep 22 2007 %F A115752 a(n) = sum(sum(n!/(i!j!(n-i-j)!), j=i+1..floor((n-i)/2)), j=0..floor((n-2)/3)). - _Dennis P. Walsh_, Jun 19 2013 %e A115752 For n=4, a(4)=15 since there are 15 five-letter words with more c's than b's and more b's than a's. Ten of the words use 3 c's and 2 b's, namely, cccbb, ccbcb, ccbbc, cbccb, cbcbc, cbbcc, bcccb, bccbc, bcbcc, and bbccc; and 5 of the words use 4 c's and 1 b, namely, ccccb, cccbc, ccbcc, cbccc, and bcccc. - _Dennis P. Walsh_, Jun 19 2013 %p A115752 seq(add(binomial(n+1,i)*add(binomial(n+1-i,j), j=i+1..floor((n-i)/2)), i=0..floor((n-2)/3)), n=0..30); # _Dennis P. Walsh_, Jun 19 2013 %Y A115752 Cf. A092255. %K A115752 nonn %O A115752 0,3 %A A115752 Kevin Smith (kjsmith(AT)yorku.ca), Mar 28 2006