login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A111548 Matrix inverse of triangle A111544. 3
1, -1, 1, -3, -2, 1, -15, -3, -3, 1, -99, -15, -3, -4, 1, -783, -99, -15, -3, -5, 1, -7083, -783, -99, -15, -3, -6, 1, -71415, -7083, -783, -99, -15, -3, -7, 1, -789939, -71415, -7083, -783, -99, -15, -3, -8, 1, -9485343, -789939, -71415, -7083, -783, -99, -15, -3, -9, 1, -122721723, -9485343, -789939, -71415 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
The column sequences are all equal after the initial terms and are derived from the logarithm of a factorial series (cf. A111546).
LINKS
FORMULA
T(n, n)=1 and T(n+1, n)=-n-1, else T(n+k+1, k) = -A111546(k) for k>=1.
EXAMPLE
Triangle begins:
1;
-1,1;
-3,-2,1;
-15,-3,-3,1;
-99,-15,-3,-4,1;
-783,-99,-15,-3,-5,1;
-7083,-783,-99,-15,-3,-6,1;
-71415,-7083,-783,-99,-15,-3,-7,1;
-789939,-71415,-7083,-783,-99,-15,-3,-8,1; ...
PROG
(PARI) T(n, k)=if(n<k || k<0, 0, if(n==k, 1, if(n==k+1, -n, -(n-k-1)*polcoeff(log(sum(i=0, n-k, (i+2)!/2!*x^i)), n-k-1))))
CROSSREFS
Sequence in context: A152400 A291978 A342217 * A140709 A109282 A135902
KEYWORD
sign,tabl
AUTHOR
Paul D. Hanna, Aug 07 2005
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 15 14:12 EDT 2024. Contains 375938 sequences. (Running on oeis4.)