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.

A095652 Fourth column of Salié-triangle A065547.

Original entry on oeis.org

1, -6, 55, -736, 13573, -330058, 10233219, -393999940, 18443289777, -1031520165710, 67934648699151, -5203713576558056, 458704384454574365, -46104659405475675026, 5241286859201262537563, -669127269362962909934028, 95322254316544433430632009
Offset: 0

Views

Author

Wolfdieter Lang, Jun 11 2004

Keywords

Crossrefs

Cf. A065547.

Programs

  • Mathematica
    col = 4; nmax = 16; h[n_, x_] := Sum[c[k]*x^k, {k, 0, n}]; eq[n_] := SolveAlways[h[n, x*(x - 1)] == EulerE[2*n, x], x]; row[n_] := Table[c[k], {k, 0, n}] /. eq[n] // First; A065547 = Table[row[n], {n, 0, nmax + col}]; a[n_] := A065547[[n + col, col]]; Table[a[n], {n, 0, nmax}] (* Jean-François Alcover, Oct 02 2013 *)

Formula

a(n) = A065547(n+3, 3), n>=0.