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!)
A360208 Triangular array T(n,k) read by antidiagonals T(n,k) = F(n)!/(F(k)!*F(n-k)!), where F(m) = A000045(m) = m-th Fibonacci number. 2
1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 3, 6, 3, 1, 1, 20, 60, 60, 20, 1, 1, 336, 6720, 10080, 6720, 336, 1, 1, 154440, 51891840, 518918400, 518918400, 51891840, 154440, 1, 1, 8204716800, 1267136462592000, 212878925715456000, 1419192838103040000, 212878925715456000, 1267136462592000, 8204716800, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
Analogous to Pascal's triangle, A007318.
LINKS
FORMULA
T(n,k) = F(n)!/(F(k)!*F(n - k)!), where F(m) = A000045(m) = m-th Fibonacci number.
EXAMPLE
First seven rows:
1
1 1
1 1 1
1 2 2 1
1 3 6 3 1
1 20 60 60 20 1
1 336 6720 10080 6720 336 1
...
MAPLE
F:= combinat[fibonacci]:
T:= (n, k)-> F(n)!/(F(k)!*F(n-k)!):
seq(seq(T(n, k), k=0..n), n=0..8); # Alois P. Heinz, Jan 30 2023
MATHEMATICA
f[n_] := Fibonacci[n];
t = Table[f[n]!/(f[k]!*f[n - k]!), {n, 0, 8}, {k, 0, n}]
TableForm[t] (* A360208, array *)
Flatten[t] (* A360208, sequence *)
CROSSREFS
Sequence in context: A156133 A010048 A055870 * A360571 A088459 A300699
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Jan 30 2023
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 27 04:50 EDT 2024. Contains 372009 sequences. (Running on oeis4.)