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”).

A102586
Column 1 of triangular matrix A102583, in which row n is formed from the first differences of row (n-1) of its inverse matrix square.
2
1, 3, -19, 310, -11328, 883178, -142845383, 47124630966, -31389538995820, 41966291739520114, -112239440330570264010, 599445448022410123433672, -6387659158606726869654362069, 135761394258581301972193734315759, -5754804036972694617911667246525612781
OFFSET
0,2
PROG
(PARI) {a(n)=local(A=Mat(1), B); for(m=2, n+2, B=matrix(m, m); for(i=1, m, for(j=1, i, if(j==i, B[i, j]=1, if(j==1, B[i, j]=(A^-2)[i-1, 1], B[i, j]=(A^-2)[i-1, j]-(A^-2)[i-1, j-1])); )); A=B); return(A[n+2, 2])}
CROSSREFS
Sequence in context: A224681 A115705 A136171 * A326902 A346840 A132876
KEYWORD
sign
AUTHOR
Paul D. Hanna, Jan 22 2005
STATUS
approved