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!)
A109906 A triangle based on A000045 and Pascal's triangle: T(n,m) = Fibonacci(n-m+1) * Fibonacci(m+1) * binomial(n,m). 13
1, 1, 1, 2, 2, 2, 3, 6, 6, 3, 5, 12, 24, 12, 5, 8, 25, 60, 60, 25, 8, 13, 48, 150, 180, 150, 48, 13, 21, 91, 336, 525, 525, 336, 91, 21, 34, 168, 728, 1344, 1750, 1344, 728, 168, 34, 55, 306, 1512, 3276, 5040, 5040, 3276, 1512, 306, 55, 89, 550, 3060, 7560, 13650, 16128, 13650, 7560, 3060, 550, 89 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Row sums give A081057.
LINKS
Peter McCalla, Asamoah Nkwanta, Catalan and Motzkin Integral Representations, arXiv:1901.07092 [math.NT], 2019.
FORMULA
T(n,m) = Fibonacci(n-m+1)*Fibonacci(m+1)*binomial(n,m).
T(n,k) = A058071(n,k) * A007318(n,k). - Reinhard Zumkeller, Aug 15 2013
EXAMPLE
Triangle T(n,k) begins:
1;
1, 1;
2, 2, 2;
3, 6, 6, 3;
5, 12, 24, 12, 5;
8, 25, 60, 60, 25, 8;
13, 48, 150, 180, 150, 48, 13;
21, 91, 336, 525, 525, 336, 91, 21;
34, 168, 728, 1344, 1750, 1344, 728, 168, 34;
55, 306, 1512, 3276, 5040, 5040, 3276, 1512, 306, 55;
89, 550, 3060, 7560, 13650, 16128, 13650, 7560, 3060, 550, 89;
...
MAPLE
f:= n-> combinat[fibonacci](n+1):
T:= (n, k)-> binomial(n, k)*f(k)*f(n-k):
seq(seq(T(n, k), k=0..n), n=0..10); # Alois P. Heinz, Apr 26 2023
MATHEMATICA
Clear[t, n, m] t[n_, m_] := Fibonacci[(n - m + 1)]*Fibonacci[(m + 1)]*Binomial[n, m]; Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]; Flatten[%]
PROG
(Haskell)
a109906 n k = a109906_tabl !! n !! k
a109906_row n = a109906_tabl !! n
a109906_tabl = zipWith (zipWith (*)) a058071_tabl a007318_tabl
-- Reinhard Zumkeller, Aug 15 2013
CROSSREFS
Some other Fibonacci-Pascal triangles: A027926, A036355, A037027, A074829, A105809, A111006, A114197, A162741, A228074.
Sequence in context: A318238 A341075 A193450 * A104856 A306393 A324763
KEYWORD
nonn,tabl
AUTHOR
EXTENSIONS
Offset changed by Reinhard Zumkeller, Aug 15 2013
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)