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”).
%I #6 Apr 12 2018 05:38:55
%S 1,1,2,12,162,3888,144768,7693920,551981520,51355426992,6010929609408,
%T 864202875949440,149698423474606080,30747550680449611200,
%U 7388611598645058636000,2053517715502048081023360,653614372412684344833419520,236202930442590804658824312960
%N Expansion of 1 + x*(1 + 2*x*(1 + 3*x*(1 + 4*x*(1 + 5*x*(1 + ...)^5)^4)^3)^2).
%C (a(n) / n!^2)^(1/n) tends to 1.36594... - _Vaclav Kotesovec_, Apr 12 2018
%H Vaclav Kotesovec, <a href="/A302688/b302688.txt">Table of n, a(n) for n = 0..200</a>
%F G.f. A(x) = 1 + x + 2*x^2 + 12*x^3 + 162*x^4 + 3888*x^5 + 144768*x^6 + 7693920*x^7 + 551981520*x^8 + ...
%t nmax = 17; CoefficientList[Series[1 + x Fold[((#2 + 1) x #1 + 1)^#2 &, 0, Reverse[Range[nmax]]], {x, 0, nmax}], x]
%Y Cf. A095793, A128318, A128319, A138211, A138212.
%K nonn
%O 0,3
%A _Ilya Gutkovskiy_, Apr 11 2018