The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A059276 Row sums of triangle in A059274. 1
1, 3, 14, 79, 482, 3088, 20502, 139882, 975084, 6915354, 49742974, 362054512, 2661657346, 19735338206, 147418892116, 1108339796742, 8380510594346, 63689530713888, 486218971691294, 3727035449588930, 28674306373680492 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
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 *)
CROSSREFS
Sequence in context: A001564 A277132 A330074 * A003169 A086621 A020089
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 24 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 5 04:27 EDT 2024. Contains 373102 sequences. (Running on oeis4.)