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!)
A172339 Triangle t(n,k) read by rows: fibonomial ratios c(n)/(c(k)*c(n-k)) where c are partial products of a generalized Fibonacci sequence with multiplier m=3. 1

%I #5 Jul 05 2012 11:37:56

%S 1,1,1,1,3,1,1,10,10,1,1,33,110,33,1,1,109,1199,1199,109,1,1,360,

%T 13080,43164,13080,360,1,1,1189,142680,1555212,1555212,142680,1189,1,

%U 1,3927,1556401,56030436,185070228,56030436,1556401,3927,1,1,12970,16977730

%N Triangle t(n,k) read by rows: fibonomial ratios c(n)/(c(k)*c(n-k)) where c are partial products of a generalized Fibonacci sequence with multiplier m=3.

%C Build with the recipe of A010048 (m=1) and A099927 (m=2).

%C Start from the generalized Fibonacci sequence A006190 and its partial products c(n) = 1, 1, 3, 30, 990, 107910, 38847600, 46189796400,... Then t(n,k) = c(n)/(c(k)*c(n-k)).

%C Row sums are 1, 2, 5, 22, 178, 2618, 70046, 3398164, 300251758, 48114604076,

%C 14041125439724,...

%e 1;

%e 1, 1;

%e 1, 3, 1;

%e 1, 10, 10, 1;

%e 1, 33, 110, 33, 1;

%e 1, 109, 1199, 1199, 109, 1;

%e 1, 360, 13080, 43164, 13080, 360, 1;

%e 1, 1189, 142680, 1555212, 1555212, 142680, 1189, 1;

%e 1, 3927, 1556401, 56030436, 185070228, 56030436, 1556401, 3927, 1;

%e 1, 12970, 16977730, 2018652097, 22021659240, 22021659240, 2018652097, 16977730, 12970, 1;

%t Clear[f, c, a, t];

%t f[0, a_] := 0; f[1, a_] := 1;

%t f[n_, a_] := f[n, a] = a*f[n - 1, a] + f[n - 2, a];

%t c[n_, a_] := If[n == 0, 1, Product[f[i, a], {i, 1, n}]];

%t t[n_, m_, a_] := c[n, a]/(c[m, a]*c[n - m, a]);

%t Table[Table[Table[t[n, m, a], {m, 0, n}], {n, 0, 10}], {a, 1, 10}];

%t Table[Flatten[Table[Table[t[n, m, a], {m, 0, n}], {n, 0, 10}]], {a, 1, 10}]

%Y Cf. A010048 (m=1), A099927 (m=2), A034802 (m=4), A172342 (m=5).

%K nonn,tabl,easy

%O 0,5

%A _Roger L. Bagula_, Feb 01 2010

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 July 23 23:47 EDT 2024. Contains 374575 sequences. (Running on oeis4.)