login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A111543
Column 2 of triangle A111541, which is the matrix logarithm of A111536.
2
0, 3, 8, 36, 212, 1496, 12128, 110288, 1108064, 12171872, 145061120, 1864321472, 25710635648, 378871778432, 5943632568320, 98936446059776, 1742232571097600, 32367994818881024, 632845309575139328, 12991224275641441280
OFFSET
0,2
PROG
(PARI) {a(n)=local(M=matrix(n+3, n+3, m, j, if(m==j, 1, if(m==j+1, -m+1, -(m-j-1)*polcoeff(log(sum(i=0, m, (i+1)!/1!*x^i)), m-j-1))))); if(n<0, 0, sum(i=1, #M, (M^0-M)^i/i)[n+3, 3])}
CROSSREFS
Cf. A111541 (triangle), A111538 (column 0), A111542 (column 1), A111536.
Sequence in context: A362362 A020111 A367640 * A276939 A188327 A024039
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 06 2005
STATUS
approved