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!)
A173886 Fibonacci double product triangle:If[n == 1, 1, If[n == 0, 1, Product[Fibonacci[(i - 1)]*Fibonacci[i], {i, 2, n}]]];t(n,m)=c(n)/(c(m)*c(n-m)) 0
1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 6, 12, 6, 1, 1, 15, 90, 90, 15, 1, 1, 40, 600, 1800, 600, 40, 1, 1, 104, 4160, 31200, 31200, 4160, 104, 1, 1, 273, 28392, 567840, 1419600, 567840, 28392, 273, 1, 1, 714, 194922, 10135944, 67572960, 67572960, 10135944, 194922 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
Row sums are:
{1, 2, 3, 6, 26, 212, 3082, 70930, 2612612, 155809082, 15109345682,...}.
LINKS
FORMULA
c(n)=If[n == 1, 1, If[n == 0, 1, Product[Fibonacci[(i - 1)]*Fibonacci[i], {i, 2, n}]]];
t(n,m)=c(n)/(c(m)*c(n-m))
EXAMPLE
{1},
{1, 1},
{1, 1, 1},
{1, 2, 2, 1},
{1, 6, 12, 6, 1},
{1, 15, 90, 90, 15, 1},
{1, 40, 600, 1800, 600, 40, 1},
{1, 104, 4160, 31200, 31200, 4160, 104, 1},
{1, 273, 28392, 567840, 1419600, 567840, 28392, 273, 1},
{1, 714, 194922, 10135944, 67572960, 67572960, 10135944, 194922, 714, 1},
{1, 1870, 1335180, 182252070, 3159035880, 8424095680, 3159035880, 182252070, 1335180, 1870, 1}
MATHEMATICA
c[n_] = If[n == 1, 1, If[n == 0, 1, Product[Fibonacci[(i - 1)]*Fibonacci[i], {i, 2, n}]]];
t[n_, m_] = c[n]/(c[m]*c[n - m]);
Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A174640 A138169 A139331 * A090441 A340591 A155794
KEYWORD
nonn,tabl,uned
AUTHOR
Roger L. Bagula, Mar 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 09:56 EDT 2024. Contains 371967 sequences. (Running on oeis4.)