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!)
A155583 The sequence is a factorization of a designed multi-bifurcative triangle sequence: t(n,m)=A155582(n,m); f(n, m) = If[m <= Floor[n/2], f(m, 1)*f(n - m, 1)*t(n, m)]. 0

%I #6 Jan 06 2013 09:57:47

%S 1,1,2,6,12,28,36,36,216,216,720,1512,1512,2520,12096,12096,12096,

%T 10080,60480,108864,108864,54432,604800,604800,1088640,544320,326592

%N The sequence is a factorization of a designed multi-bifurcative triangle sequence: t(n,m)=A155582(n,m); f(n, m) = If[m <= Floor[n/2], f(m, 1)*f(n - m, 1)*t(n, m)].

%C Row sums are:

%C {1, 1, 2, 6, 40, 72, 1152, 5544, 46368, 332640, 3169152,...}.

%F t(n,m)=A155582(n,m); f(n, m) = If[m <= Floor[n/2], f(m, 1)*f(n - m, 1)*t(n, m)].

%e Factor sequence is:

%e {1},

%e {1},

%e {2},

%e {6},

%e {12, 28},

%e {36, 36},

%e {216, 216, 720},

%e {1512, 1512, 2520},

%e {12096, 12096, 12096, 10080},

%e {60480, 108864, 108864, 54432}, {604800, 604800, 1088640, 544320, 326592}

%t Clear[t, a, b, c, n, m, f, x];

%t a[0] = 1; a[n_] := a[n] = ((4*n - 2)/(n + 1))*a[n - 1];

%t b[0] = 1; b[n_] := b[n] = If[IntegerQ[((3*n - 2)/(n + 1))*b[n - 1]], ((3*n - 2)/(n + 1))*b[n - 1], If[IntegerQ[((4*n - 2)/( n + 1))*b[n - 1]], ((4*n - 2)/(n + 1))*b[n - 1], n*b[n - 1]]]

%t c[0] = 1; c[n_] := c[n] = If[IntegerQ[((6*n - 4)/(n + 1))*c[n - 1]], ((6*n - 4)/(n + 1))*c[n - 1], If[IntegerQ[((4*n - 2)/(n + 1))*c[n - 1]], ((4*n - 2)/(n + 1))* c[n - 1], n*c[n - 1]]];

%t t[n_, m_] := t[n, m] = If[IntegerQ[a[n]/(a[m]*a[n - m])], a[n]/(a[m]*a[n - m]), If[IntegerQ[b[n]/(b[m]*b[ n - m])], b[n]/(b[ m]*b[n - m]), If[IntegerQ[c[n]/(c[m]* c[n - m])], c[n]/(c[m]*c[n - m]), Binomial[n, m]]]];

%t f[0, 1] = 1; f[1, 1] = 1; f[2, 1] = 2;

%t f[n_, m_] := f[n, m] = If[m <= Floor[n/2], f[m, 1]*f[n - m, 1]*t[n, m]];

%t a = Join[{{1}}, {{1}}, Table[Table[f[n, m], {m, 1, Floor[n/2]}], {n, 2, 10}]];

%t Flatten[%]

%Y Cf. A155582

%K nonn,uned

%O 0,3

%A _Roger L. Bagula_, Jan 24 2009

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 10 04:12 EDT 2024. Contains 375044 sequences. (Running on oeis4.)