|
Search: id:A094440
|
|
|
| A094440 |
|
Triangular array T(n,k)=F(n+1-k)C(n,k-1), k=1,2,3,...,n; n>=1. |
|
+0 6
|
|
| 1, 1, 2, 2, 3, 3, 3, 8, 6, 4, 5, 15, 20, 10, 5, 8, 30, 45, 40, 15, 6, 13, 56, 105, 105, 70, 21, 7, 21, 104, 224, 280, 210, 112, 28, 8, 34, 189, 468, 672, 630, 378, 168, 36, 9, 55, 340, 945, 1560, 1680, 1260, 630, 240, 45, 10, 89, 605, 1870, 3465, 4290, 3696, 2310, 990, 330
(list; table; graph; listen)
|
|
|
OFFSET
|
1,3
|
|
|
COMMENT
|
Row sums yield the even-subscripted Fibonacci numbers (A001906).
|
|
FORMULA
|
Comments from Peter Bala (pbala(AT)toucansurf.com), Aug 17 2007: (Start)
The row polynomials F(n,x) = sum {k = 0..n} C(n,k)*Fibonacci(n-k)*x^k satisfy F(n,x)* L(n,x) = F(2n,x), where L(n,x) = sum {k = 0..n} C(n,k)*Lucas(n-k)*x^k.
Other identities and formulas include:
F(n+1,x)^2 - F(n,x)F(n+2,x) = (x^2 + x - 1)^n;
Sum {k = 0..n}C(n,k)*F(n-k,x)*L(k,x) = 2^n F(n,x);
F(n,2x) = sum {k = 0..n} C(n,k)*F(n-k,x)*x^k;
F(n,3x) = sum {k = 0..n} C(n,k)*F(n-k,2x)*x^k etc;
Sequence {F(n,r)} n>=1 gives the r th binomial transform of the Fibonacci numbers: r=1 gives A001906, r=2 gives A030191, r=3 gives A099453, r=4 gives A081574, r=5 gives A081574.
F(n,1/phi) = (-1)^(n-1) F(n,-phi) = sqrt(5)^(n-1) for n >= 1, where phi = (1+sqrt(5))/2.
The polynomials F(n,-x) satisfy a Riemann hypothesis: the zeros of F(n,-x) lie on the vertical line Re x = 1/2 in the complex plane.
G.f.: t/(1 - (2x + 1)*t + (x^2 + x - 1)*t^2) = t + (1 + 2x)*t^2 + (2 + 3x + 3x^2)*t^3 + (3 + 8x + 6x^2 + 4x^3)*t^4 + ... . (End)
|
|
EXAMPLE
|
Triangle starts:
1;
1, 2;
2, 3, 3;
3, 8, 6, 4;
T(4,3)=F(2)*C(4,2)=1*6=6
|
|
MAPLE
|
with(combinat): T:=(n, k)->binomial(n, k-1)*fibonacci(n+1-k): for n from 1 to 11 do seq(T(n, k), k=1..n) od; # yields sequence in triangular form (Deutsch)
|
|
CROSSREFS
|
Cf. A094435, A000045.
Cf. A001906.
Cf. A132148.
Sequence in context: A025496 A099959 A099964 this_sequence A093736 A076938 A014589
Adjacent sequences: A094437 A094438 A094439 this_sequence A094441 A094442 A094443
|
|
KEYWORD
|
nonn,tabl
|
|
AUTHOR
|
Clark Kimberling (ck6(AT)evansville.edu), May 03 2004
|
|
EXTENSIONS
|
Corrected error in expansion of generating function. - Peter Bala (pbala(AT)toucansurf.com), Sep 24 2008
|
|
|
Search completed in 0.002 seconds
|