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.

A059276 Row sums of triangle in A059274.

Original entry on oeis.org

1, 3, 14, 79, 482, 3088, 20502, 139882, 975084, 6915354, 49742974, 362054512, 2661657346, 19735338206, 147418892116, 1108339796742, 8380510594346, 63689530713888, 486218971691294, 3727035449588930, 28674306373680492
Offset: 0

Views

Author

N. J. A. Sloane, Jan 24 2001

Keywords

Programs

  • Mathematica
    T[i_, j_]:= T[i, j] = Module[{r, s, t1}, If[i == 0 && j == 0, Return[1]]; If[j == 0, Return[1]]; t1 = T[i, j - 1]; For[r = 0, r <= i - j, r++,
    For[s = 0, s <= j, s++, If[r + s != i, t1 = t1 + T[r + s, s]]]];
    Return[t1]]; Table[Sum[T[n, k], {k, 0, n}], {n, 0, 10}] (* G. C. Greubel, Jan 04 2017 *)