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!)
A171456 Triangle T(n, k) = coefficients of p(n, x) where p(n, x) = ((1-x^n)/(1-x))*p(n-1, x), read by rows. 2
1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 4, 3, 2, 1, 1, 3, 6, 10, 13, 14, 13, 10, 6, 3, 1, 1, 4, 10, 20, 33, 47, 59, 66, 66, 59, 47, 33, 20, 10, 4, 1, 1, 5, 15, 35, 68, 115, 174, 239, 301, 350, 377, 377, 350, 301, 239, 174, 115, 68, 35, 15, 5, 1, 1, 6, 21, 56, 124, 239, 413, 652, 952, 1297, 1659, 2001, 2283, 2469, 2534, 2469, 2283, 2001, 1659, 1297, 952, 652, 413, 239, 124, 56, 21, 6, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,9
REFERENCES
J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, p. 146.
LINKS
FORMULA
T(n, k) = coefficients of p(n, x) where p(n, x) = ((1-x^n)/(1-x))*p(n-1, x), p(1,x) = 1, p(2,x) = 1+x, p(3,x) = 1+x+x^2+x^3.
EXAMPLE
The irregular triangle begins as:
1;
1, 1;
1, 1, 1, 1;
1, 2, 3, 4, 3, 2, 1;
1, 3, 6, 10, 13, 14, 13, 10, 6, 3, 1;
1, 4, 10, 20, 33, 47, 59, 66, 66, 59, 47, 33, 20, 10, 4, 1;
MATHEMATICA
p[x_, n_]:= p[x, n]= If[n<4, (1-x^2^(n-1))/(1-x), ((1-x^4)/(1-x))*Product[(1 - x^j)/(1-x), {j, 4, n}]];
T[n_]:= CoefficientList[p[x, n], x];
Table[T[n], {n, 1, 10}]//Flatten (* modified by G. C. Greubel, May 10 2021 *)
PROG
(Sage)
def p(n, x): return (1-x^2^(n-1))/(1-x) if (n<4) else ((1-x^4)/(1-x))*product( (1-x^j)/(1-x) for j in (4..n) )
def T(n): return ( p(n, x) ).full_simplify().coefficients(sparse=False)
[T(n) for n in (1..10)] # G. C. Greubel, May 10 2021
CROSSREFS
Sequence in context: A167600 A008287 A017859 * A028356 A232244 A260644
KEYWORD
nonn,tabf
AUTHOR
Roger L. Bagula, Dec 09 2009
EXTENSIONS
Edited by G. C. Greubel, May 10 2021
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 March 29 05:28 EDT 2024. Contains 371264 sequences. (Running on oeis4.)