login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A103451 Triangular array T read by rows: T(n, 1) = T(n, n) = 1, T(n, k) = 0 for 1 < k < n. 28
1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,1

COMMENTS

Equals Pascal's triangle (A007318) where all elements > 1 are replaced with zero. Therefore it might be called "binomial skeleton".

Row sums are in A040000, antidiagonal sums are in A040001. When construed as a lower triangular matrix, the matrix inverse is A103452.

FORMULA

a(n) = A097806(n-1) for n > 0. - Philippe DELEHAM (kolotoko(AT)wanadoo.fr), Oct 16 2007

T(n,k) = C(n,k-n)+C(n,-k)-C(0,n+k), 0<=k<=n. [From Eric Werley, Jul 1 2011]

EXAMPLE

First few rows are

    [ 1 ],

    [ 1, 1 ],

    [ 1, 0, 1 ],

    [ 1, 0, 0, 1 ],

    [ 1, 0, 0, 0, 1 ],

    [ 1, 0, 0, 0, 0, 1 ].

PROG

(MAGMA) r:=14; T:=ScalarMatrix(r, 1); for n in [1..r] do T[n, 1]:=1; end for; &cat[ [ T[n, k]: k in [1..n] ]: n in [1..r] ];

CROSSREFS

Cf. A007318, A040000, A040001, A103452, A097806.

Sequence in context: A174852 A065333 A127972 * A103452 A131219 A127970

Adjacent sequences:  A103448 A103449 A103450 * A103452 A103453 A103454

KEYWORD

easy,nonn,tabl

AUTHOR

Paul Barry (pbarry(AT)wit.ie), Feb 06 2005

EXTENSIONS

Edited by Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), Jan 26 2011

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 03:14 EST 2012. Contains 205694 sequences.