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.

A179045 Triangle T(n,k), 1<=k<=n, read by rows, related to A033485.

Original entry on oeis.org

1, 2, 1, 3, 1, 1, 5, 2, 1, 1, 7, 3, 1, 1, 1, 10, 4, 2, 1, 1, 1, 13, 5, 3, 1, 1, 1, 1, 18, 7, 4, 2, 1, 1, 1, 1, 23, 9, 5, 3, 1, 1, 1, 1, 1, 30, 12, 6, 4, 2, 1, 1, 1, 1, 1, 37, 15, 7, 5, 3, 1, 1, 1, 1, 1, 1, 47, 19, 9, 6, 4, 2, 1, 1, 1, 1, 1, 1, 57, 23, 11, 7, 5, 3, 1, 1, 1, 1, 1, 1, 1, 70, 28, 14, 8, 6, 4
Offset: 1

Views

Author

Philippe Deléham, Jun 26 2010

Keywords

Comments

Column k=1 : A033485 ; column k=2 : A062188 ; row sums : A102378.

Examples

			Triangle begins : 1 ; 2,1 ; 3,1,1 ; 5,2,1,1 ; 7,3,1,1,1 ; ...
		

Crossrefs

Formula

T(n,k)=T(n-1,k)+T([n/2],k), T(n,n)=1, T(n,k)=0 if k>n.