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 A378325 #13 Nov 24 2024 06:15:48 %S A378325 1,1,2,7,41,338,3499,42969,606351,9633640,169888025,3290314970, %T A378325 69409429043,1584105116525,38894316619948,1022411500472240, %U A378325 28653072049382809,852911635849385778,26876978490909421289,893929164892155754432,31296785296935394097351,1150551256823546563078988 %N A378325 G.f. A(x) = Sum_{n>=0} a(n)*x^n, where a(n) = Sum_{k=0..n-1} [x^k] A(x)^k for n >= 1 with a(0) = 1. %H A378325 Vaclav Kotesovec, <a href="/A378325/b378325.txt">Table of n, a(n) for n = 0..300</a> %F A378325 a(n) ~ c * n! / (n^alpha * LambertW(1)^n), where alpha = 2 - 2*LambertW(1) - 1/(1 + LambertW(1)) = 0.22760967581532... and c = 0.323194722450152336... %o A378325 (PARI) {a(n) = my(A=[1]); for(m=1, n, A=concat(A, 0); %o A378325 A[#A] = 1 + sum(k=1, m-1, (polcoeff(Ser(A)^k, k)) )); A[n+1]} %o A378325 for(n=0, 30, print1(a(n), ", ")) \\ after _Paul D. Hanna_ %Y A378325 Cf. A377098, A378326. %Y A378325 Cf. A002212, A307678, A349331, A349332, A349333, A349334, A349335. %K A378325 nonn %O A378325 0,3 %A A378325 _Vaclav Kotesovec_, Nov 23 2024