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

A105616
Column 1 of triangle A105615.
2
1, 4, 26, 226, 2426, 30826, 451586, 7489426, 138722426, 2839238026, 63654973826, 1551919194226, 40888965122426, 1157981114051626, 35083865696279426, 1132449247218851026, 38800104353355372026, 1406432065083818193226
OFFSET
0,2
COMMENTS
Also equals column 0 of triangle A105623 (offset 1), where A105623 equals the matrix square-root of triangle A105615.
PROG
(PARI) {a(n)=if(n<0, 0, (matrix(n+2, n+2, m, j, if(m>=j, if(m==j, 1, if(m==j+1, -2*j, polcoeff(1/sum(i=0, m-j, (2*i)!/i!/2^i*x^i)+O(x^m), m-j) ))))^-1)[n+2, 2])}
CROSSREFS
Sequence in context: A152407 A291847 A168448 * A293915 A107879 A066224
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 16 2005
STATUS
approved