cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A269942 Triangle read by rows, the coefficients of the inverse partial P-polynomials.

Original entry on oeis.org

1, 0, -1, 0, -1, 1, 0, -2, 1, 2, -1, 0, -5, 5, -1, 5, -2, -3, 1, 0, -14, 21, -3, -6, 1, 14, -12, 2, -9, 3, 4, -1, 0, -42, 84, -28, -28, 7, 7, -1, 42, -56, 7, 14, -2, -28, 21, -3, 14, -4, -5, 1
Offset: 0

Views

Author

Peter Luschny, Mar 08 2016

Keywords

Comments

The triangle of coefficients of the partial P-polynomials is A269941. For the definition of the inverse partial P-polynomials see the link 'P-transform'.

Examples

			[[1]],
[[0], [-1]],
[[0], [-1], [1]],
[[0], [-2, 1], [2], [-1]],
[[0], [-5, 5, -1], [5, -2], [-3], [1]],
[[0], [-14, 21, -3, -6, 1], [14, -12, 2], [-9, 3], [4], [-1]],
[[0], [-42,84,-28,-28,7,7,-1],[42,-56,7,14,-2],[-28,21,-3],[14,-4],[-5],[1]]
Replacing the sublists by their sums reduces the triangle to a signed version of the triangle A097805. The column 1 of sublists is A111785 in a different order.
		

Crossrefs

Programs

  • Sage
    # For function PMultiCoefficients see A269941.
    PMultiCoefficients(7, inverse = True)