cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A185755 Triangle: T(n,k) equals the coefficient of x^n*y^k in the n-th iteration of x*(1+xy)/(1-x), for n>=1, 0<=k as read by rows.

This page as a plain text file.
%I A185755 #8 Mar 30 2012 18:37:26
%S A185755 1,2,2,9,15,6,64,154,120,30,625,1995,2340,1190,220,7776,31191,49315,
%T A185755 38325,14595,2170,117649,571221,1142932,1204588,704102,215950,27076,
%U A185755 2097152,11992688,29141994,38972388,30945432,14570976,3761310,409836
%N A185755 Triangle: T(n,k) equals the coefficient of x^n*y^k in the n-th iteration of x*(1+xy)/(1-x), for n>=1, 0<=k<n, as read by rows.
%F A185755 T(n,0) = A000169(n) = n^(n-1).
%F A185755 T(n,n) = A112317(n).
%F A185755 Sum_{k=0..n-1} T(n,k) = A185523(n).
%F A185755 Sum_{k=0..n-1} (-1)^k*T(n,k) = 0^n.
%e A185755 Triangle begins:
%e A185755 1;
%e A185755 2, 2;
%e A185755 9, 15, 6;
%e A185755 64, 154, 120, 30;
%e A185755 625, 1995, 2340, 1190, 220;
%e A185755 7776, 31191, 49315, 38325, 14595, 2170;
%e A185755 117649, 571221, 1142932, 1204588, 704102, 215950, 27076;
%e A185755 2097152, 11992688, 29141994, 38972388, 30945432, 14570976, 3761310, 409836;
%e A185755 43046721, 283976517, 814059798, 1323693384, 1334427720, 853356072, 337738758, 75550188, 7303164; ...
%o A185755 (PARI) {T(n,k)=local(A=x, G=x*(1+x*y)/(1-x)); for(i=1, n, A=subst(G, x, A+x*O(x^n)));polcoeff(polcoeff(A, n,x),k,y)}
%Y A185755 Cf. columns: A000169, A185756, A185757; row sums: A185523.
%Y A185755 Cf. diagonals: A112317, A185758, A185759.
%K A185755 tabl,nonn
%O A185755 1,2
%A A185755 _Paul D. Hanna_, Feb 03 2011