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!)
A094444 Triangular array T(n,k) = Fibonacci(n+4-k)*C(n,k), k=0..n, n>=0. 10
3, 5, 3, 8, 10, 3, 13, 24, 15, 3, 21, 52, 48, 20, 3, 34, 105, 130, 80, 25, 3, 55, 204, 315, 260, 120, 30, 3, 89, 385, 714, 735, 455, 168, 35, 3, 144, 712, 1540, 1904, 1470, 728, 224, 40, 3, 233, 1296, 3204, 4620, 4284, 2646, 1092, 288, 45, 3, 377, 2330, 6480, 10680, 11550, 8568, 4410, 1560, 360, 50, 3 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Row sums are Fibonacci numbers.
Row sums with alternating signs are Fibonacci numbers or their negatives.
LINKS
FORMULA
From G. C. Greubel, Oct 30 2019: (Start)
T(n,k) = binomial(n,k)*Fibonacci(n-k+4).
Sum_{k=0..n} T(n,k) = Fibonacci(2*n+4).
Sum_{k=0..n} (-1)^(k+1) * T(n,k) = (-1)^n * Fibonacci(n-4). (End)
EXAMPLE
First few rows:
3;
5, 3;
8, 10, 3;
13, 24, 15, 3;
21, 52, 48, 20, 3;
34, 105, 130, 80, 25, 3;
MAPLE
with(combinat); seq(seq(fibonacci(n-k+4)*binomial(n, k), k=0..n), n=0..12); # G. C. Greubel, Oct 30 2019
MATHEMATICA
Table[Fibonacci[n-k+4]*Binomial[n, k], {n, 0, 12}, {k, 0, n}]//Flatten (* G. C. Greubel, Oct 30 2019 *)
PROG
(PARI) T(n, k) = binomial(n, k)*fibonacci(n-k+4);
for(n=0, 12, for(k=0, n, print1(T(n, k), ", "))) \\ G. C. Greubel, Oct 30 2019
(Magma) [Binomial(n, k)*Fibonacci(n-k+4): k in [0..n], n in [0..12]]; // G. C. Greubel, Oct 30 2019
(Sage) [[binomial(n, k)*fibonacci(n-k+4) for k in (0..n)] for n in (0..12)] # G. C. Greubel, Oct 30 2019
(GAP) Flat(List([0..12], n-> List([0..n], k-> Binomial(n, k)*Fibonacci(n-k+4) ))); # G. C. Greubel, Oct 30 2019
CROSSREFS
Sequence in context: A354528 A328915 A100338 * A231641 A099446 A198827
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, May 03 2004
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)