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.

A343171 Irregular triangle read by rows: coefficients of polynomials xi_n.

Original entry on oeis.org

1, 1, 3, 1, 11, 5, 57, 38, 5, 361, 302, 61, 2763, 2827, 845, 61, 24611, 29607, 11421, 1385, 250737, 347372, 165678, 30108, 1385, 2873041, 4501564, 2551326, 610444, 50521, 36581523, 63967093, 42044902, 12558738, 1578727, 50521
Offset: 0

Views

Author

N. J. A. Sloane, Apr 21 2021

Keywords

Examples

			Triangle begins:
    1;
    1;
    3,   1;
   11,   5;
   57,  38,  5;
  361, 302, 61;
  ...
		

Crossrefs

First column gives A001586.
Cf. A343170.

Programs

  • Mathematica
    xi[0][_] = 1;
    xi[n_][x_] := xi[n, x] = (2n - 1 + (n-1) x) xi[n-1][x] - (1 + x)(4 + 2x)* xi[n-1]'[x];
    Table[CoefficientList[xi[n][x], x], {n, 0, 10}] // Flatten (* Jean-François Alcover, Apr 21 2021 *)

Extensions

More terms from Jean-François Alcover, Apr 21 2021