login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A055829
a(n) = T(2n+5,n), array T as in A055818.
8
1, 95, 768, 5216, 33024, 201792, 1208320, 7145792, 41919744, 244590496, 1421823232, 8243669664, 47708339712, 275738420864, 1592186658816, 9187634766976, 52992487665152, 305556178607328, 1761501729738496
OFFSET
0,2
LINKS
MAPLE
T:= proc(i, j) option remember;
if i=0 or j=0 then 1
else add(add(T(h, m), m=0..j), h=0..i-1)
fi; end:
seq(T(n+5, n), n=0..30); # G. C. Greubel, Jan 23 2020
MATHEMATICA
T[i_, j_]:= T[i, j]= If[i==0 || j==0, 1, Sum[T[h, m], {h, 0, i-1}, {m, 0, j}]]; Table[T[n+5, n], {n, 0, 30}] (* G. C. Greubel, Jan 23 2020 *)
PROG
(Sage)
@CachedFunction
def T(i, j):
if (i==0 or j==0): return 1
else: return sum(sum(T(h, m) for m in (0..j)) for h in (0..i-1))
[T(n+5, n) for n in (0..30)] # G. C. Greubel, Jan 23 2020
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 28 2000
STATUS
approved