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.

A236935 The infinite Seidel matrix H read by antidiagonals upwards; H = (H(n,k): n,k >= 0).

Original entry on oeis.org

1, 0, -1, -1, -1, 0, 0, 1, 2, 2, 5, 5, 4, 2, 0, 0, -5, -10, -14, -16, -16, -61, -61, -56, -46, -32, -16, 0, 0, 61, 122, 178, 224, 256, 272, 272, 1385, 1385, 1324, 1202, 1024, 800, 544, 272, 0, 0, -1385, -2770, -4094, -5296, -6320, -7120, -7664, -7936, -7936, -50521, -50521, -49136, -46366, -42272, -36976, -30656, -23536, -15872, -7936, 0
Offset: 0

Views

Author

N. J. A. Sloane, Feb 17 2014

Keywords

Comments

This is, in essence, a signed version of the triangle in A008280.

Examples

			Array begins:
     1   -1    0    2    0 -16   0 272 0 ...
     0   -1    2    2  -16 -16 272 272 ...
    -1    1    4  -14  -32 256 544 ...
     0    5  -10  -46  224 800 ...
     5   -5  -56  178 1024 ...
     0  -61  122 1202 ...
   -61   61 1324 ...
     0 1385 ...
  1385 ...
  ...
		

Crossrefs

Programs

  • PARI
    a(n) = 2^n*2^(n+1)*(subst(bernpol(n+1, x), x, 3/4) - subst(bernpol(n+1, x), x, 1/4))/(n+1) /* A122045 */
    H(n,k) = sum(i=0, k, (-1)^i*binomial(k,i)*a(n+k-i)) /* Petros Hadjicostas, Feb 21 2021 */
    /* Second PARI program (same a(n) for A122045 as above) */
    H(n,k) = (-1)^(n+k)*sum(i=0, k, binomial(k,i)*a(n+i)) /* Petros Hadjicostas, Feb 21 2021 */

Formula

From Petros Hadjicostas, Feb 20 2021: (Start)
H(n,0) = A122045(n).
H(0,k) = (-1)^n*A155585(n).
H(n,k) = Sum_{i=0..n} binomial(n,i)*H(0,k+i).
H(n,k) = Sum_{i=0..k} (-1)^i*binomial(k,i)*H(n+k-i,0).
H(n,n) = A099023(n).
Bivariate e.g.f.: Sum_{n,k>=0} H(n,k)*(x^n/n!)*(y^k/k!) = 2*exp(x)/(1 + exp(2*(x+y))).
H(n,k) = (-1)^(n+k)*A239005(n+k,k), where the latter is a triangle.
H(n,k) = -A008280(n+k,k) if ((n+k) mod 4) == 1 or 2, and H(n,k) = A008280(n+k,k) if ((n+k) mod 4) == 3 or 0, provided A008280 is read as a triangle. (End)

Extensions

More terms from Petros Hadjicostas, Feb 21 2021