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

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.
3
1, 1, 2, 7, 41, 338, 3499, 42969, 606351, 9633640, 169888025, 3290314970, 69409429043, 1584105116525, 38894316619948, 1022411500472240, 28653072049382809, 852911635849385778, 26876978490909421289, 893929164892155754432, 31296785296935394097351, 1150551256823546563078988
OFFSET
0,3
LINKS
FORMULA
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...
PROG
(PARI) {a(n) = my(A=[1]); for(m=1, n, A=concat(A, 0);
A[#A] = 1 + sum(k=1, m-1, (polcoeff(Ser(A)^k, k)) )); A[n+1]}
for(n=0, 30, print1(a(n), ", ")) \\ after Paul D. Hanna
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Nov 23 2024
STATUS
approved