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.

A113288 Matrix inverse of triangle A113287.

This page as a plain text file.
%I A113288 #5 Mar 30 2012 18:36:51
%S A113288 1,-2,1,3,0,1,-8,-4,-4,1,15,10,10,0,1,-36,-30,-36,-12,-6,1,77,70,91,
%T A113288 42,21,0,1,-192,-184,-256,-152,-96,-24,-8,1,459,450,648,432,306,108,
%U A113288 36,0,1,-1220,-1210,-1780,-1280,-1000,-460,-200,-40,-10,1,3201,3190,4741,3542,2926,1540,770,220,55,0,1
%N A113288 Matrix inverse of triangle A113287.
%F A113288 T(n, 0) = (-1)^n*(n+1)*A072374(n-1) for n>=2, with T(1, 0)=-2, T(n, n)=1. T(n, 1) = (-1)^n*(n+1)*(A072374(n-1) - 1) for n>=2.
%e A113288 Triangle begins:
%e A113288 .1;
%e A113288 .-2,1;
%e A113288 .3,0,1;
%e A113288 .-8,-4,-4,1;
%e A113288 .15,10,10,0,1;
%e A113288 .-36,-30,-36,-12,-6,1;
%e A113288 .77,70,91,42,21,0,1;
%e A113288 .-192,-184,-256,-152,-96,-24,-8,1;
%e A113288 .459,450,648,432,306,108,36,0,1;
%e A113288 .-1220,-1210,-1780,-1280,-1000,-460,-200,-40,-10,1;
%e A113288 .3201,3190,4741,3542,2926,1540,770,220,55,0,1; ...
%o A113288 (PARI) {T(n,k)=local(x=X+O(X^(n+2)),y=Y+O(Y^(n+2)),M=matrix(n+1,n+1,r,c, polcoeff(polcoeff(1/(1-x*y)+r*x/((1-x*y)*(1+x+x*y)),r-1,X),c-1,Y))); if(n<k,0,(M^-1)[n+1,k+1])}
%Y A113288 Cf. A113287, A113289 (row sums), A113290 (-log), A072374.
%K A113288 sign,tabl
%O A113288 0,2
%A A113288 _Paul D. Hanna_, Oct 23 2005