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!)
A212265 Row square-sums of triangle A096815. 2
1, 2, 3, 7, 21, 51, 138, 358, 969, 2735, 7514, 21372, 60144, 171510, 485294, 1388586, 3949211, 11296953, 32294750, 92471813, 265484354, 762548923, 2194099432, 6318266076, 18214160616, 52525201261, 151638570041, 437959067720, 1265890334086, 3661612407681 (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]^2, {k, 0, n}], {n, 0, 50}]
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)^2, k, 0, n), n, 0, 20);
CROSSREFS
Sequence in context: A032223 A002863 A047693 * A107108 A323230 A262305
KEYWORD
nonn
AUTHOR
Emanuele Munarini, May 12 2012
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 April 24 13:14 EDT 2024. Contains 371948 sequences. (Running on oeis4.)