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!)
A141664 An irregular triangular sequence formed by partition-like complex polynomials. 1
1, 1, 0, 1, 0, 0, -1, 1, 0, 0, -1, -1, -1, 0, 1, 0, 0, -1, -1, -2, -1, -1, 0, 0, 1, 1, 0, 0, -1, -1, -2, -2, -2, -1, -1, 1, 1, 1, 1, 1, 0, 1, 0, 0, -1, -1, -2, -2, -3, -2, -2, 0, 0, 2, 2, 3, 2, 2, 1, 1, 0, 0, -1, 1, 0, 0, -1, -1, -2, -2, -3, -3, -3, -1, -1, 1, 2, 4, 4, 5, 4, 4, 3, 2, 0, 0, -1, -1, -1, -1, -1, 0, 1, 0, 0, -1, -1, -2, -2, -3, -3, -4, -2, -2, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,20
COMMENTS
Row sums are: {1, 1, 0, -2, -4, -4, 0, 8, 16, 16, 0, ...}.
LINKS
FORMULA
Let p(x,n) = Product_{j=1..n} (1 + i*x^j), p(x,0)=1, with i being the imaginary unit, then the n-th row is the real part of the coefficients of p(x,n).
EXAMPLE
Irregular triangle begins as:
1.
1, 0.
1, 0, 0, -1.
1, 0, 0, -1, -1, -1, 0.
1, 0, 0, -1, -1, -2, -1, -1, 0, 0, 1.
1, 0, 0, -1, -1, -2, -2, -2, -1, -1, 1, 1, 1, 1, 1, 0. ...
MATHEMATICA
p[x_, n_]:= If[n == 0, 1, Product[(1 + I*x^i), {i, 1, n}]];
Table[Expand[p[x, n]], {n, 0, 10}];
Table[Re[CoefficientList[p[x, n], x]], {n, 0, 10}]//Flatten
PROG
(PARI) row(n) = if (n==0, 1, apply(x->real(x), Vecrev(prod(j=1, n, (1 + I*x^j))))); \\ Michel Marcus, Apr 02 2019
CROSSREFS
Cf. A053632.
Sequence in context: A068934 A035200 A198066 * A056979 A087812 A288384
KEYWORD
sign,look,tabf
AUTHOR
Roger L. Bagula, Sep 05 2008
EXTENSIONS
Edited by G. C. Greubel, Apr 01 2019
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 April 19 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)