cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A054453 Triangle of partial row sums of triangle A054450(n,m), n >= m >= 0.

Original entry on oeis.org

1, 2, 1, 4, 2, 1, 8, 5, 2, 1, 15, 10, 6, 2, 1, 28, 20, 12, 7, 2, 1, 51, 38, 26, 14, 8, 2, 1, 92, 71, 50, 33, 16, 9, 2, 1, 164, 130, 97, 64, 41, 18, 10, 2, 1, 290, 235, 180, 130, 80, 50, 20, 11, 2, 1, 509, 420, 332, 244, 171, 98, 60, 22, 12, 2, 1
Offset: 0

Views

Author

Wolfdieter Lang, Apr 27 2000 and May 08 2000

Keywords

Comments

In the language of the Shapiro et al. reference (given in A053121) such a lower triangular (ordinary) convolution array, considered as a matrix, belongs to the Riordan-group. The G.f. for the row polynomials p(n,x) (increasing powers of x) is ((1-z^2)*(Fib(z))^2)/(1-x*z/(1-z^2)) Fib(x)=1/(1-x-x^2) = g.f. for A000045(n+1) (Fibonacci numbers without 0).
This is the second member of the family of Riordan-type matrices obtained from the unsigned convolution matrix A049310(n,m) by repeated application of the partial row sums procedure.
The column sequences are A029907, A001629, A054454 for m=0..2.

Examples

			{1}; {2,1}; {4,2,1}; {8,5,2,1};...
Fourth row polynomial (n=3): p(3,x)= 8+5*x+2*x^2+x^3
		

Crossrefs

Cf. A049310, A054450, A000045, A029907, A001629. Row sums: A054455(n).

Formula

a(n, m)=sum(A054450(n, k), k=m..n), n >= m >= 0, a(n, m) := 0 if n
Column m recursion: a(n, m)= sum(a(j-1, m)*|A049310(n-j, 0)|, j=m..n) + A054450(n, m), n >= m >= 0, a(n, m) := 0 if n
G.f. for column m: ((1-x^2)*(Fib(x))^2)*(x/(1-x^2))^m, m >= 0, with Fib(x) G.f. for A000045(n+1).

A091594 Triangle read by rows: T(n,m) := Sum_{k=0..floor((n-m)/2)} binomial(n-2k,m) * binomial(n-m-k,k).

Original entry on oeis.org

1, 1, 1, 2, 2, 1, 3, 4, 3, 1, 5, 8, 7, 4, 1, 8, 15, 16, 11, 5, 1, 13, 28, 34, 28, 16, 6, 1, 21, 51, 70, 66, 45, 22, 7, 1, 34, 92, 140, 148, 116, 68, 29, 8, 1, 55, 164, 274, 320, 281, 190, 98, 37, 9, 1, 89, 290, 527, 672, 651, 494, 295, 136, 46, 10, 1, 144, 509, 999, 1379, 1456, 1219, 819, 439, 183, 56, 11, 1
Offset: 0

Author

Paul Barry, Jan 23 2004

Keywords

Comments

A Fibonacci related number triangle.

Examples

			Rows begin:
   1,
   1,  1,
   2,  2,  1,
   3,  4,  3,  1,
   5,  8,  7,  4,  1,
   8, 15, 16, 11,  5,  1,
  13, 28, 34, 28, 16,  6, 1,
  21, 51, 70, 66, 45, 22, 7, 1,
  ...
		

Crossrefs

Columns include A000045, A029907, A054455. Row sums are A006054.

Formula

k-th column has g.f. 1/(1-x-x^2) * ( x*(1-x^2)/(1-x-x^2) )^k.
Showing 1-2 of 2 results.