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!)
A111559 Matrix inverse of triangle A111553. 2
1, -1, 1, -4, -2, 1, -24, -4, -3, 1, -184, -24, -4, -4, 1, -1664, -184, -24, -4, -5, 1, -17024, -1664, -184, -24, -4, -6, 1, -192384, -17024, -1664, -184, -24, -4, -7, 1, -2366144, -192384, -17024, -1664, -184, -24, -4, -8, 1, -31362304, -2366144, -192384, -17024, -1664, -184, -24, -4, -9, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
After initial terms, all columns are equal to -A111556.
LINKS
FORMULA
T(n, n)=1 and T(n+1, n)=-n-1, else T(n+k+1, k) = -A111556(k) for k>=1.
EXAMPLE
Triangle begins:
1;
-1,1;
-4,-2,1;
-24,-4,-3,1;
-184,-24,-4,-4,1;
-1664,-184,-24,-4,-5,1;
-17024,-1664,-184,-24,-4,-6,1;
-192384,-17024,-1664,-184,-24,-4,-7,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+3)!/3!*x^i)), n-k-1))))
CROSSREFS
Sequence in context: A144088 A039948 A111536 * A224798 A239894 A152406
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 April 24 06:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)