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!)
A096816 Row sums of triangle A096815, in which A096815(n,k) equals the k-th term of the convolution of the two prior rows indexed by (n-k) and k. 5
1, 2, 3, 5, 9, 15, 26, 44, 75, 129, 220, 378, 648, 1114, 1910, 3284, 5635, 9677, 16608, 28501, 48930, 83973, 144150, 247396, 424612, 728577, 1250185, 2144858, 3679772, 6313029, 10830673, 18581706, 31880471, 54698330, 93847987, 161021223 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MATHEMATICA
T[n_, k_] := T[n, k] = If[n < k || k < 0, 0, If[k = 1 || k == n, 1, Sum[T[n-k, j]T[k, k-j], {j, 0, k}]]]
Table[Sum[T[n, k], {k, 0, n}], {n, 0, 50}] [Emanuele Munarini, May 16 2012]
PROG
(Maxima) T(n, k):= if ( n<k or k<0 ) then 0 else if ( k<=1 or k=n ) then 1 else sum(T(n-k, j)*T(k, k-j), j, 0, k);
makelist(sum(T(n, k), k, 0, n), n, 0, 12); [Emanuele Munarini, May 12 2012]
CROSSREFS
Cf. A096815.
Sequence in context: A114138 A114140 A302018 * A220127 A286887 A018157
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 20 2004
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 10:02 EDT 2024. Contains 373105 sequences. (Running on oeis4.)