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

A177391
Column 0 of triangle A177390.
4
1, 1, 10, 447, 50040, 10435970, 3470932404, 1677020809366, 1106343610197376, 953498812570622640, 1038635682902781680400, 1393647840093243232341272, 2256617352635816315546864448, 4335800009191929632579481763728
OFFSET
0,3
COMMENTS
Triangle T=A177390 obeys: g.f. of row n of T^(2n) = (2n^2 + y)^n for n>=0.
PROG
(PARI) {a(n, p=2)=local(M=Mat(1), N, L); for(i=1, n, N=M; M=matrix(#N+1, #N+1, r, c, if(r>=c, if(r<=#N, (N^(p*(#N)))[r, c], polcoeff((x+p*(#M)^2)^(#M), c-1)))); L=sum(i=1, #M, -(M^0-M)^i/i); M=sum(i=0, #M, (L/p/(#N))^i/i!); ); M[n+1, 1]}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 25 2010
STATUS
approved