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.

A039758 Triangle of B-analogs of Stirling numbers of first kind.

Original entry on oeis.org

1, 1, -1, 1, -4, 3, 1, -9, 23, -15, 1, -16, 86, -176, 105, 1, -25, 230, -950, 1689, -945, 1, -36, 505, -3480, 12139, -19524, 10395, 1, -49, 973, -10045, 57379, -177331, 264207, -135135, 1, -64, 1708, -24640, 208054, -1038016, 2924172, -4098240, 2027025, 1, -81, 2796, -53676, 626934, -4574934, 20570444, -53809164, 71697105, -34459425
Offset: 0

Views

Author

Ruedi Suter (suter(AT)math.ethz.ch)

Keywords

Comments

Triangle T(n,k), read by rows, given by [1, 0, 1, 0, 1, 0, 1, 0, 1, ...] DELTA [ -1, -2, -3, -4, -5, -6, -7, -8, ...], where DELTA is the operator defined in A084938. - Philippe Deléham, Aug 08 2005

Examples

			Triangle T(n,k) (with rows n >= 0 and columns k = 0..n) begins:
  1;
  1,  -1;
  1,  -4,   3;
  1,  -9,  23,   -15;
  1, -16,  86,  -176,   105;
  1, -25, 230,  -950,  1689,   -945;
  1, -36, 505, -3480, 12139, -19524, 10395;
... [Edited by _Petros Hadjicostas_, Jul 12 2020]
		

Crossrefs

Cf. A039757.

Programs

  • Mathematica
    a[n_, m_] := a[n, m] = a[n - 1, m - 1] - (2*n - 1)*a[n - 1, m]; a[n_, 0] := (-1)^n*(2*n - 1)!!; a[n_, n_] = 1; Table[a[n, m], {n, 0, 9}, {m, n, 0, -1}] // Flatten (* Michael De Vlieger, Dec 29 2023, after Jean-François Alcover at A039757 *)
  • PARI
    row(n)=Vec(prod(i=1, n, 'x-2*i+1)) \\ Petros Hadjicostas, Jul 12 2020

Formula

T(n,k) = A039757(n,n-k). - Petros Hadjicostas, Jul 12 2020

Extensions

More terms from Petros Hadjicostas, Jul 12 2020