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 A233759 #19 Dec 11 2018 12:03:54 %S A233759 1,2,4,7,13,21,35,55,86,130,196,287,420,602,858,1206,1687,2331,3206, %T A233759 4368,5922,7967,10670,14193,18803,24766,32490,42411,55159,71416,92152, %U A233759 118434,151725,193676,246491,312677,395537,498852,627509,787171,985043,1229494 %N A233759 Bisection of A006950 (the odd part). %C A233759 See Zaletel-Mong paper, page 14, FIG. 11: C2a is A233758, C2b is this sequence, C2c is A015128. %H A233759 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 (C2b). %t A233759 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 A233759 a[n_] := b[2 n - 1, 2 n - 1]; %t A233759 Table[a[n], {n, 1, 42}] (* _Jean-François Alcover_, Dec 11 2018, after _Alois P. Heinz_ in A006950 *) %Y A233759 Cf. A000009, A015128, A006950, A069910, A069911, A195825, A195836, A211970, A233758. %K A233759 nonn %O A233759 1,2 %A A233759 _Omar E. Pol_, Jan 11 2014