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!)
A111540 Matrix inverse of triangle A111536. 3
1, -1, 1, -2, -2, 1, -8, -2, -3, 1, -44, -8, -2, -4, 1, -296, -44, -8, -2, -5, 1, -2312, -296, -44, -8, -2, -6, 1, -20384, -2312, -296, -44, -8, -2, -7, 1, -199376, -20384, -2312, -296, -44, -8, -2, -8, 1, -2138336, -199376, -20384, -2312, -296, -44, -8, -2, -9, 1, -24936416, -2138336, -199376, -20384, -2312, -296 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
The column sequences are derived from the logarithm of a factorial series (cf. A111537).
LINKS
FORMULA
T(n, n)=1 and T(n+1, n)=n+1, else T(n+k+1, k) = -A111537(k) for k>=1.
EXAMPLE
Triangle begins:
1;
-1,1;
-2,-2,1;
-8,-2,-3,1;
-44,-8,-2,-4,1;
-296,-44,-8,-2,-5,1;
-2312,-296,-44,-8,-2,-6,1;
-20384,-2312,-296,-44,-8,-2,-7,1;
-199376,-20384,-2312,-296,-44,-8,-2,-8,1; ...
After initial terms, all columns are equal to -A111537.
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, (i+1)!/1!*x^i)), n-k-1))))
CROSSREFS
Sequence in context: A225925 A357553 A246745 * A360410 A346709 A096440
KEYWORD
sign,tabl
AUTHOR
Paul D. Hanna, Aug 06 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 April 23 13:51 EDT 2024. Contains 371914 sequences. (Running on oeis4.)