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 A233758 #17 Dec 11 2018 12:04:01 %S A233758 1,1,3,5,10,16,28,43,70,105,161,236,350,501,722,1016,1431,1981,2741, %T A233758 3740,5096,6868,9233,12306,16357,21581,28394,37128,48406,62777,81182, %U A233758 104494,134131,171467,218607,277691,351841,444314,559727,703002,880896,1100775 %N A233758 Bisection of A006950 (the even part). %C A233758 See Zaletel-Mong paper, page 14, FIG. 11: C2a is this sequence, C2b is A233759, C2c is A015128. %H A233758 M. P. Zaletel and R. S. K. Mong, <a href="http://arxiv.org/abs/1208.4862">Exact Matrix Product States for Quantum Hall Wave Functions</a>, arXiv preprint arXiv:1208.4862 [cond-mat.str-el] (2012), 14 (C2a). %t A233758 b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, b[n, i - 1] + If[i > n, 0, b[n - i, i - Mod[i, 2]]]]]; %t A233758 a[n_] := b[2 n - 2, 2 n - 2]; %t A233758 Table[a[n], {n, 1, 42}] (* _Jean-François Alcover_, Dec 11 2018, after _Alois P. Heinz_ in A006950 *) %Y A233758 Cf. A000009, A015128, A006950, A069910, A069911, A195825, A195836, A211970, A233759. %K A233758 nonn %O A233758 1,3 %A A233758 _Omar E. Pol_, Jan 11 2014