OFFSET
0,9
COMMENTS
This is, in essence, a signed version of the triangle in A008280.
LINKS
D. Dumont and G. Viennot, A combinatorial interpretation of the Seidel generation of Genocchi numbers, Preprint, Annotated scanned copy.
D. Dumont and G. Viennot, A combinatorial interpretation of the Seidel generation of Genocchi numbers, Annals of Discrete Mathematics, 6 (1980), 77-87.
Dominique Foata and Guo-Niu Han, Seidel Triangle Sequences and Bi-Entringer Numbers, November 20, 2013.
Dominique Foata and Guo-Niu Han, Seidel Triangle Sequences and Bi-Entringer Numbers, European Journal of Combinatorics, 42 (2014), 243-260.
L. Seidel, Über eine einfache Entstehungsweise der Bernoullischen Zahlen und einiger verwandten Reihen, Sitzungsberichte der mathematisch-physikalischen Classe der königlich bayerischen Akademie der Wissenschaften zu München, Vol. 7 (1877), pp. 157-187; see Beilage 4 (p. 187).
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.
EXAMPLE
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 ...
...
PROG
(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 */
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
N. J. A. Sloane, Feb 17 2014
EXTENSIONS
More terms from Petros Hadjicostas, Feb 21 2021
STATUS
approved