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!)
A050344 Number of partitions of n into distinct parts with 3 levels of parentheses. 3
1, 1, 1, 5, 11, 25, 60, 141, 321, 742, 1688, 3810, 8580, 19225, 42844, 95156, 210480, 463866, 1018957, 2231114, 4870400, 10601805, 23015117, 49833471, 107636878, 231940988, 498671281, 1069826434, 2290402343, 4893782240, 10436263572, 22214850439, 47202869437 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
N. J. A. Sloane, Transforms
FORMULA
Weigh transform of A050343.
EXAMPLE
4 = (((4))) = (((3)))+(((1))) = (((3))+((1))) = ((3)+(1)) = ((3+1)) = ((2+1))+((1)) = ((2+1)+(1)).
MAPLE
g:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
g(n, i-1)+`if`(i>n, 0, g(n-i, i-1))))
end:
h:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(binomial(g(i, i), j)*h(n-i*j, i-1), j=0..n/i)))
end:
f:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(binomial(h(i, i), j)*f(n-i*j, i-1), j=0..n/i)))
end:
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(binomial(f(i, i), j)*b(n-i*j, i-1), j=0..n/i)))
end:
a:= n-> b(n, n):
seq(a(n), n=0..50); # Alois P. Heinz, May 19 2013
MATHEMATICA
g[n_, i_] := g[n, i] = If[n == 0, 1, If[i < 1, 0, g[n, i - 1] + If[i > n, 0, g[n - i, i - 1]]]];
h[n_, i_] := h[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[g[i, i], j]* h[n - i*j, i - 1], {j, 0, n/i}]]];
f[n_, i_] := f[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[h[i, i], j]* f[n - i*j, i - 1], {j, 0, n/i}]]];
b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[f[i, i], j]* b[n - i*j, i - 1], {j, 0, n/i}]]];
a[n_] := b[n, n];
Table[a[n], {n, 0, 50}] (* Jean-François Alcover, Jun 11 2018, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A014858 A355243 A018368 * A318033 A326161 A354838
KEYWORD
nonn
AUTHOR
Christian G. Bower, Oct 15 1999
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 10 08:08 EDT 2024. Contains 373256 sequences. (Running on oeis4.)