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.

A121434 Matrix inverse of triangle A098568, where A098568(n, k) = C( (k+1)*(k+2)/2 + n-k-1, n-k) for n>=k>=0.

This page as a plain text file.
%I A121434 #8 May 05 2025 02:59:50
%S A121434 1,0,1,0,-1,1,0,2,-3,1,0,-7,12,-6,1,0,37,-67,39,-10,1,0,-268,498,-311,
%T A121434 95,-15,1,0,2496,-4701,3045,-1015,195,-21,1,0,-28612,54298,-35901,
%U A121434 12560,-2675,357,-28,1,0,391189,-745734,499157,-179717,40635,-6097,602,-36,1,0,-6230646,11911221,-8034267,2945010
%N A121434 Matrix inverse of triangle A098568, where A098568(n, k) = C( (k+1)*(k+2)/2 + n-k-1, n-k) for n>=k>=0.
%F A121434 (1) T(n,k) = (-1)^(n-k)*[A107876^(k*(k+1)/2)](n,k); i.e., column k equals signed column k of A107876^(k*(k+1)/2).
%F A121434 G.f.s for column k:
%F A121434 (2) 1 = Sum_{j>=0} T(j+k,k)*x^j/(1-x)^( j*(j+1)/2) + j*k + k*(k+1)/2);
%F A121434 (3) 1 = Sum_{j>=0} T(j+k,k)*x^j*(1+x)^( j*(j-1)/2) + j*k + k*(k+1)/2).
%e A121434 Triangle begins:
%e A121434   1;
%e A121434   0, 1;
%e A121434   0, -1, 1;
%e A121434   0, 2, -3, 1;
%e A121434   0, -7, 12, -6, 1;
%e A121434   0, 37, -67, 39, -10, 1;
%e A121434   0, -268, 498, -311, 95, -15, 1;
%e A121434   0, 2496, -4701, 3045, -1015, 195, -21, 1;
%e A121434   0, -28612, 54298, -35901, 12560, -2675, 357, -28, 1;
%e A121434   0, 391189, -745734, 499157, -179717, 40635, -6097, 602, -36, 1; ...
%o A121434 (PARI) /* Matrix Inverse of A098568 */ T(n,k)=local(M=matrix(n+1,n+1,r,c,if(r>=c,binomial((c-1)*(c-2)/2+r-2,r-c)))); return((M^-1)[n+1,k+1])
%o A121434 (PARI) /* Obtain by G.F. */ T(n,k)=polcoeff(1-sum(j=0, n-k-1, T(j+k,k)*x^j/(1-x+x*O(x^n))^(j*(j+1)/2+j*k+k*(k+1)/2)), n-k)
%Y A121434 Cf. A098568, A107876; unsigned columns: A107877, A107887.
%K A121434 sign,tabl
%O A121434 0,8
%A A121434 _Paul D. Hanna_, Aug 27 2006