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.

A118437 Row sums of triangle A118435.

Original entry on oeis.org

1, 2, 0, 8, -32, -128, 320, 128, 2048, 8192, -15360, 2048, -131072, -524288, 1064960, 32768, 8388608, 33554432, -66846720, 524288, -536870912, -2147483648, 4299161600, 8388608, 34359738368, 137438953472, -274810798080, 134217728
Offset: 0

Views

Author

Paul D. Hanna, Apr 28 2006

Keywords

Crossrefs

Cf. A118435 (triangle), A118436 (column 0).

Programs

  • Mathematica
    nmax = 27;
    h[n_, k_] := Binomial[n, k]*(-1)^(Quotient[n+1, 2] - Quotient[k, 2]+n-k);
    H = Table[h[n, k], {n, 0, nmax}, {k, 0, nmax}];
    Cn = Table[Binomial[n, k], {n, 0, nmax}, {k, 0, nmax}];
    Total /@ (H.Inverse[Cn].H ) (* Jean-François Alcover, Apr 08 2024 *)
  • PARI
    {a(n)=polcoeff((1+8*x^3-32*x^5+384*x^6-256*x^7)/(1-2*x)/(1+4*x^2)/(1+64*x^4+x*O(x^n)),n)}

Formula

G.f.: (1+8*x^3-32*x^5+384*x^6-256*x^7)/(1-2*x)/(1+4*x^2)/(1+64*x^4).