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!)
A172345 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=7. 2
1, 1, 1, 1, 7, 1, 1, 50, 50, 1, 1, 357, 2550, 357, 1, 1, 2549, 129999, 129999, 2549, 1, 1, 18200, 6627400, 47319636, 6627400, 18200, 1, 1, 129949, 337867400, 17224480052, 17224480052, 337867400, 129949, 1, 1, 927843, 17224610001, 6269758040364 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Start from the generalized Fibonacci sequence A054413 and its partial products c(n) = 1, 1, 7, 350, 124950, 318497550, 5796655410000,... Then t(n,k) = c(n)/(c(k)*c(n-k)).
Row sums are 1, 2, 9, 102, 3266, 265098, 60610838, 35124954804, 57340390811566,
237262009585104396, 2765506241462282647452,...}
LINKS
EXAMPLE
1;
1, 1;
1, 7, 1;
1, 50, 50, 1;
1, 357, 2550, 357, 1;
1, 2549, 129999, 129999, 2549, 1;
1, 18200, 6627400, 47319636, 6627400, 18200, 1;
1, 129949, 337867400, 17224480052, 17224480052, 337867400, 129949, 1;
1, 927843, 17224610001, 6269758040364, 44766423655148, 6269758040364, 17224610001, 927843, 1;
MATHEMATICA
Clear[f, c, a, t];
f[0, a_] := 0; f[1, a_] := 1;
f[n_, a_] := f[n, a] = a*f[n - 1, 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), A099927 (m=2), A172343 (m=6), A172346 (m=8).
Sequence in context: A156602 A203389 A174689 * A174719 A176392 A015118
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Feb 01 2010
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 25 10:43 EDT 2024. Contains 371967 sequences. (Running on oeis4.)