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!)
A124976 Table (read by antidiagonals): t(1,n) = t(m,1) = 1 for all m and n. t(m,n) = (sum{k=1 to m-1} t(k,n)) * (sum{k=1 to n-1} t(m,k)). 2
1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 4, 9, 4, 1, 1, 8, 60, 60, 8, 1, 1, 16, 648, 4225, 648, 16, 1, 1, 32, 12240, 2818530, 2818530, 12240, 32, 1, 1, 64, 427680, 34599304740, 7947815340969, 34599304740, 427680, 64, 1, 1, 128, 28641600, 14799779785070280 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,8
LINKS
EXAMPLE
t(3,4) = (t(1,4)+t(2,4)) * (t(3,1)+t(3,2)+t(3,3)) = (1+4) * (1+2+9) = 60.
MATHEMATICA
t[m_, n_] := t[m, n] = If[m == 1 || n == 1, 1, Sum[t[k, n], {k, m - 1}] * Sum[t[m, j], {j, n - 1}]]; Flatten@Table[t[d + 1 - j, j], {d, 10}, {j, d}] (* Ray Chandler, Nov 19 2006 *)
CROSSREFS
Cf. A124975.
Sequence in context: A342623 A121697 A225201 * A176663 A113021 A298261
KEYWORD
easy,nonn,tabl
AUTHOR
Leroy Quet, Nov 14 2006
EXTENSIONS
Extended by Ray Chandler, Nov 19 2006
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 August 11 15:31 EDT 2024. Contains 375073 sequences. (Running on oeis4.)