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!)
A172350 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=5. 2
1, 1, 1, 1, 1, 1, 1, 6, 6, 1, 1, 11, 66, 11, 1, 1, 41, 451, 451, 41, 1, 1, 96, 3936, 7216, 3936, 96, 1, 1, 301, 28896, 197456, 197456, 28896, 301, 1, 1, 781, 235081, 3761296, 14019376, 3761296, 235081, 781, 1, 1, 2286, 1785366, 89565861, 781665696 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
Start from the generalized Fibonacci sequence A015440 and its partial products c(n) = 1, 1, 1, 6, 66, 2706, 259776, 78192576, 61068401856, 139602366642816... Then t(n,k) = c(n)/(c(k)*c(n-k)).
Row sums are 1, 2, 3, 14, 90, 986, 15282, 453308, 22013694, 1746038420, 222562828116,...
LINKS
EXAMPLE
1;
1, 1;
1, 1, 1;
1, 6, 6, 1;
1, 11, 66, 11, 1;
1, 41, 451, 451, 41, 1;
1, 96, 3936, 7216, 3936, 96, 1;
1, 301, 28896, 197456, 197456, 28896, 301, 1;
1, 781, 235081, 3761296, 14019376, 3761296, 235081, 781, 1;
1, 2286, 1785366, 89565861, 781665696, 781665696, 89565861, 1785366, 2286, 1;
1, 6191, 14152626, 1842200151, 50409295041, 118031520096, 50409295041, 1842200151, 14152626, 6191, 1;
MATHEMATICA
Clear[f, c, a, t];
f[0, a_] := 0; f[1, a_] := 1;
f[n_, a_] := f[n, a] = f[n - 1, a] + a*f[n - 2, a];
c[n_, a_] := If[n == 0, 1, Product[f[i, a], {i, 1, n}]];
t[n_, m_, a_] := c[n, a]/(c[m, a]*c[n - m, a]);
Table[Table[Table[t[n, m, a], {m, 0, n}], {n, 0, 10}], {a, 1, 10}];
Table[Flatten[Table[Table[t[n, m, a], {m, 0, n}], {n, 0, 10}]], {a, 1, 10}]
CROSSREFS
Cf. A010048 (m=1), A015109 (m=2), A172349 (m=4), A172351 (m=6).
Sequence in context: A021606 A341687 A046606 * A205457 A155868 A322622
KEYWORD
nonn,tabl
AUTHOR
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 08:59 EDT 2024. Contains 371935 sequences. (Running on oeis4.)