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 A192482 #30 Feb 28 2017 22:54:51 %S A192482 1,3,10,51,286,1710,10740,69763,464822,3159450,21821516,152708078, %T A192482 1080452972,7716009724,55545950568,402649640163,2936600795174, %U A192482 21532660592418,158645924209500,1173875395710458,8719519396134596,64995349923442628,486020221692290392 %N A192482 a(n) = 2^n*C(n-1)-y(n), where y(n) = Sum_{i=1..n-1} (2^i*C(i-1)-y(i))*(2^(n-i)*C(n-i-1)-y(n-i)), y(0)=0, y(1)=1 and where C(i) is the i-th Catalan number. %C A192482 The sequence a(n) for n>=1 is the number of rows with the value true in the truth tables of all bracketed formulas with n distinct variables connected by the binary connective of m-implication, case(i). %H A192482 Alois P. Heinz, <a href="/A192482/b192482.txt">Table of n, a(n) for n = 1..500</a> %H A192482 Volkan Yildiz, <a href="http://arxiv.org/abs/1203.4645">Counting false entries in truth tables of bracketed formulas connected by m-implication</a>, arXiv:1203.4645 [math.CO], 2012. %F A192482 a(n) = 2^n*C(n-1)-y(n), where y(n) = Sum_{i=1..n-1} (2^i*C(i-1)-y(i))*(2^(n-i)*C(n-i-1)-y(n-i)), y(0)=0, y(1)=1 and C(i) is the i-th Catalan number. %p A192482 C:= n-> binomial(2*n, n)/(n+1): %p A192482 y:= proc(n) option remember; %p A192482 `if`(n<2, n, add((2^i *C(i-1) -y(i))* %p A192482 (2^(n-i)*C(n-i-1)-y(n-i)), i=1..n-1)) %p A192482 end: %p A192482 a:= n-> 2^n*C(n-1) -y(n): %p A192482 seq(a(n), n=1..30); # _Alois P. Heinz_, Feb 06 2012 %t A192482 c = CatalanNumber; y[n_] := y[n] = If[n<2, n, Sum[(2^i*c[i-1]-y[i])*(2^(n-i)*c[n-i-1] - y[n-i]), {i, 1, n-1}]]; a[n_] := 2^n*c[n-1]-y[n]; Table[ a[n], {n, 1, 30}] (* _Jean-François Alcover_, Feb 28 2017, after _Alois P. Heinz_ *) %Y A192482 Cf. A192481, A000108. %K A192482 nonn %O A192482 1,2 %A A192482 _Volkan Yildiz_, Jul 01 2011