login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Triangular array T(n,k) = Fibonacci(k+3)*C(n,k), k=0..n, n>=0.
10

%I #14 Sep 08 2022 08:45:13

%S 2,2,3,2,6,5,2,9,15,8,2,12,30,32,13,2,15,50,80,65,21,2,18,75,160,195,

%T 126,34,2,21,105,280,455,441,238,55,2,24,140,448,910,1176,952,440,89,

%U 2,27,180,672,1638,2646,2856,1980,801,144,2,30,225,960,2730,5292,7140,6600,4005,1440,233

%N Triangular array T(n,k) = Fibonacci(k+3)*C(n,k), k=0..n, n>=0.

%C Let F(n) denote the n-th Fibonacci number (A000045). Then n-th row sum of T is F(2n+3) and n-th alternating row sum is F(n-3).

%H G. C. Greubel, <a href="/A094438/b094438.txt">Rows n = 0..100 of triangle, flattened</a>

%F From _G. C. Greubel_, Oct 30 2019: (Start)

%F T(n, k) = binomial(n,k)*Fibonacci(k+3).

%F Sum_{k=0..n} T(n,k) = Fibonacci(2*n+3).

%F Sum_{k=0..n} (-1)^k * T(n,k) = Fibonacci(n-3). (End)

%e First few rows:

%e 2;

%e 2 3;

%e 2 6 5;

%e 2 9 15 8;

%e 2, 12, 30, 32, 13;

%e 2, 15, 50, 80, 65, 21;

%p with(combinat); seq(seq(fibonacci(k+3)*binomial(n,k), k=0..n), n=0..12); # _G. C. Greubel_, Oct 30 2019

%t Table[Fibonacci[k+3]Binomial[n,k],{n,0,12},{k,0,n}]//Flatten (* _Harvey P. Dale_, Dec 16 2017 *)

%o (PARI) T(n,k) = binomial(n,k)*fibonacci(k+3);

%o for(n=0,12, for(k=0,n, print1(T(n,k), ", "))) \\ _G. C. Greubel_, Oct 30 2019

%o (Magma) [Binomial(n,k)*Fibonacci(k+3): k in [0..n], n in [0..12]]; // _G. C. Greubel_, Oct 30 2019

%o (Sage) [[binomial(n,k)*fibonacci(k+3) for k in (0..n)] for n in (0..12)] # _G. C. Greubel_, Oct 30 2019

%o (GAP) Flat(List([0..12], n-> List([0..n], k-> Binomial(n,k)*Fibonacci(k+3) ))); # _G. C. Greubel_, Oct 30 2019

%Y Cf. A000045, A094435, A094436, A094437, A094439.

%Y Cf. A094440, A094441, A094442, A094443, A094444.

%K nonn,easy,tabl

%O 0,1

%A _Clark Kimberling_, May 03 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 20 16:38 EDT 2024. Contains 376074 sequences. (Running on oeis4.)