The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A139167 Triangle T(n,k) read by rows: the coefficient [x^k] of the polynomial (n-1)! *sum_{i=0..n} Fibonacci(i)*binomial(x,n-i), read by rows, 0<=k<n. 2

%I #9 May 08 2013 13:55:36

%S 1,1,1,4,1,1,18,11,0,1,120,50,23,-2,1,960,494,65,45,-5,1,9360,4344,

%T 1354,-15,85,-9,1,105840,51876,10444,3409,-350,154,-14,1,1370880,

%U 653232,172444,13300,8729,-1232,266,-20,1,19958400,9654480,2194380,483272,-13923,22449,-3150,438,-27,1

%N Triangle T(n,k) read by rows: the coefficient [x^k] of the polynomial (n-1)! *sum_{i=0..n} Fibonacci(i)*binomial(x,n-i), read by rows, 0<=k<n.

%C Row sums are 1, 2, 6, 30, 192, 1560, 15120, 171360, 2217600, 32296320,... (see A078700)

%D Brendan Hassett, Introduction to algebraic Geometry,Cambridge University Press. New York,2007, page 229

%e 1;

%e 1, 1;

%e 4, 1, 1;

%e 18, 11, 0, 1;

%e 120, 50, 23, -2, 1;

%e 960, 494, 65, 45, -5, 1;

%e 9360, 4344, 1354, -15,85, -9, 1;

%e 105840, 51876, 10444, 3409, -350, 154, -14, 1;

%e 1370880, 653232, 172444, 13300, 8729, -1232, 266, -20, 1;

%e 19958400, 9654480, 2194380, 483272, -13923, 22449, -3150, 438, -27, 1;

%p B := proc(x,k)

%p mul( (x-i+1)/i,i=1..k) ;

%p end proc:

%p A139167 := proc(n,k)

%p local f,i ;

%p f := 0 ;

%p for i from 0 to n do

%p f := f+combinat[fibonacci](i)*B(x,n-i) ;

%p end do;

%p %*(n-1)! ;

%p coeftayl(%,x=0,k) ;

%p end proc: # _R. J. Mathar_, May 08 2013

%t Clear[a, p, x] a[0] = 0; a[1] = 1; a[n_] := a[n] = a[n - 1] + a[n - 2]; p[x, 0] = a[0]; p[x_, n_] := p[x, n] = Sum[a[i]*Binomial[x, n - i], {i, 0, n}]; Table[If[n > 0, ExpandAll[(n - 1)!*p[x, n]], 0], {n, 0, 10}]; a = Table[CoefficientList[If[n > 0, ExpandAll[(n - 1)!*p[x, n]], 0], x], {n, 0, 10}]; Flatten[a] Table[Apply[Plus, CoefficientList[If[n > 0, ExpandAll[(n - 1)!*p[x, n]], 0], x]], {n, 0, 10}]

%Y Cf. A000045.

%K tabl,sign

%O 1,4

%A _Roger L. Bagula_, Jun 05 2008

%E Edited by _R. J. Mathar_, May 08 2013

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 June 5 12:10 EDT 2024. Contains 373105 sequences. (Running on oeis4.)