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.
%I A274388 #6 Jun 24 2016 23:23:05 %S A274388 1,1,5,82,2729,151376,12567187,1457297878,224869459201,44538286061152, %T A274388 11011493721321251,3323602336722922574,1202633627172086804257, %U A274388 513869583003728865617848,255985770924976071728925555,147050140379016992236158750526,96489590122440823908683879560193,71722476615114676804476795900453248,59952692198711311645811325484552353091,55990325778560798795385664699772933184190,58081532846176563089250398770056580653829601 %N A274388 Main diagonal of rectangular array A274391 of coefficients in functions that satisfy W_n(x) = W_{n-1}(x)^W_n(x), with W_0(x) = exp(x). %H A274388 Paul D. Hanna, <a href="/A274388/b274388.txt">Table of n, a(n) for n = 0..100</a> %o A274388 (PARI) {ITERATE(F,n,k) = my(G=x +x*O(x^k)); for(i=1,n,G=subst(G,x,F));G} %o A274388 {A274391(n,k) = my(TREE = serreverse(x*exp(-x +x*O(x^k)))); k!*polcoeff(exp(ITERATE(TREE,n,k)),k)} %o A274388 /* Print table A274391 */ %o A274388 for(n=0,10,for(k=0,10,print1(A274391(n,k),", "));print("...")) %o A274388 /* Print this sequence as the main diagonal in A274391 */ %o A274388 for(n=0,20,print1(A274391(n,n),", ")) %Y A274388 Cf. A274391, A274387, A274389. %K A274388 nonn %O A274388 0,3 %A A274388 _Paul D. Hanna_, Jun 24 2016