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!)
A130454 Triangle, read by rows of (n+1)(n+2)/2 terms, where row n+1 is generated by taking partial sums of row n and then appending n+1 zeros followed by the final term in the partial sums of row n for n>=0. 1
1, 1, 0, 1, 1, 1, 2, 0, 0, 2, 1, 2, 4, 4, 4, 6, 0, 0, 0, 6, 1, 3, 7, 11, 15, 21, 21, 21, 21, 27, 0, 0, 0, 0, 27, 1, 4, 11, 22, 37, 58, 79, 100, 121, 148, 148, 148, 148, 148, 175, 0, 0, 0, 0, 0, 175, 1, 5, 16, 38, 75, 133, 212, 312, 433, 581, 729, 877, 1025, 1173, 1348, 1348, 1348 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
EXAMPLE
Triangle begins:
.1;
.1, 0, 1;
.1, 1, 2, 0,0, 2;
.1, 2, 4, 4, 4, 6, 0,0,0, 6;
.1, 3, 7,11,15,21,21, 21, 21, 27, 0,0,0,0, 27;
.1, 4,11,22,37,58,79,100,121,148,148,148,148,148,175, 0,0,0,0,0, 175; ...
PROG
(PARI) {T(n, k)=local(A=[1], B); if(n==0, if(k==0, 1, 0), for(j=1, n, B=Vec(Ser(A)/(1-x)); A=concat(concat(B, vector(j)), B[ #B])); A[k+1])}
CROSSREFS
Cf. A130455 (final term in rows).
Sequence in context: A341023 A241067 A130457 * A070787 A033985 A216218
KEYWORD
nonn,tabf
AUTHOR
Paul D. Hanna, May 26 2007
EXTENSIONS
Changed keyword tabl to tabf - R. J. Mathar, Mar 30 2010
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 May 26 08:09 EDT 2024. Contains 372807 sequences. (Running on oeis4.)