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!)
A132784 Triangle, read by rows of n*(n+1)/2 + 1 terms, where row n begins with n zeros followed by reverse partial sums of the prior row. 2
1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 2, 2, 2, 0, 0, 0, 0, 2, 4, 6, 7, 7, 7, 7, 0, 0, 0, 0, 0, 7, 14, 21, 28, 34, 38, 40, 40, 40, 40, 40, 0, 0, 0, 0, 0, 0, 40, 80, 120, 160, 200, 238, 272, 300, 321, 335, 342, 342, 342, 342, 342, 342, 0, 0, 0, 0, 0, 0, 0, 342, 684, 1026, 1368, 1710, 2052, 2387 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,12
COMMENTS
Main diagonal (A132785) also yields (with offset) the row sums and the rightmost border of this triangle.
LINKS
EXAMPLE
Triangle begins:
1;
0, 1;
0,0, 1,1;
0,0,0, 1,2,2,2;
0,0,0,0, 2,4,6,7,7,7,7;
0,0,0,0,0, 7,14,21,28,34,38,40,40,40,40,40;
0,0,0,0,0,0, 40,80,120,160,200,238,272,300,321,335,342,342,342,342,342,342; ...
To obtain row 4 from row 3: [0,0,0, 1,2,2,2], start with 4 zeros followed by the partial sums of the reverse of row 3: partial_sums([2,2,2,1, 0,0,0]) = [2,4,6,7, 7,7,7].
PROG
(PARI) {T(n, k)=local(A=[1]); if(n==0, 1, for(i=1, n, B=Vec(Pol(A)/(1-x +x*O(x^(i*(i-1)/2)))); A=concat(vector(i), B)); A[k+1])}
CROSSREFS
Cf. A132785 (main diagonal), A132786 (column sums).
Sequence in context: A093315 A204267 A237452 * A180834 A214458 A133873
KEYWORD
nonn,tabf
AUTHOR
Paul D. Hanna, Aug 29 2007
STATUS
approved

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 11 14:45 EDT 2024. Contains 373311 sequences. (Running on oeis4.)