cp's OEIS Frontend

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.

A059229 A diagonal of triangle defined in A059226.

This page as a plain text file.
%I A059229 #8 Jan 04 2017 02:50:02
%S A059229 0,2,12,70,426,2708,17846,121014,839388,5929162,42509318,308561388,
%T A059229 2263197114,16748071210,124893822012,937612685502,7080464093282,
%U A059229 53748285892004,409909445733950,3139241855256334,24132284421690988
%N A059229 A diagonal of triangle defined in A059226.
%H A059229 G. C. Greubel, <a href="/A059229/b059229.txt">Table of n, a(n) for n = 1..250</a>
%H A059229 <a href="/index/Bo#boustrophedon">Index entries for sequences related to boustrophedon transform</a>
%t A059229 T[i_, j_]:= T[i, j] = Module[{r, s, t1}, If[i == 0 && j == 0, Return[1]]; If[j == 0, Return[0]]; t1 = T[i, j - 1]; For[r = 0, r <= i - j, r++,
%t A059229 For[s = 0, s <= j, s++, If[r + s != i, t1 = t1 + T[r + s, s]]]]; Return[t1]]; Table[T[n, n - 1], {n, 1, 25}] (* _G. C. Greubel_, Jan 03 2017 *)
%K A059229 nonn
%O A059229 1,2
%A A059229 _N. J. A. Sloane_, Jan 19 2001