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.

A250105 Column 1 of triangle in A250104 (or A124323).

Original entry on oeis.org

0, 0, 3, 4, 20, 66, 287, 1296, 6435, 34250, 194942, 1179036, 7544121, 50865920, 360167355, 2670210640, 20673196460, 166753291806, 1398415162703, 12169520162440, 109709590135635, 1022997624845614, 9852508254721222, 97880299543896216, 1001841501018883425
Offset: 1

Views

Author

N. J. A. Sloane, Nov 16 2014

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := n*(Sum[(-1)^(j-1)*BellB[n-j-1], {j, 1, n-1}]-(-1)^n); a[1] = 0; Table[a[n], {n, 1, 25}] (* Jean-François Alcover, Dec 09 2014 *)