OFFSET
0,2
COMMENTS
Equals row sums of triangle A340934.
EXAMPLE
G.f.: A(x) = 1 + 2*x + 3*x^2 + 8*x^3 + 31*x^4 + 146*x^5 + 754*x^6 + 4168*x^7 + 24387*x^8 + 149878*x^9 + 961735*x^10 + 6413730*x^11 + 44305495*x^12 + ...
where
A(x) = 1/(1-x) + x/(1 - x*A(x)) + x^2/(1 - x*A(x)^2) + x^3/(1 - x*A(x)^3) + x^4/(1 - x*A(x)^4) + x^5/(1 - x*A(x)^5) + ...
PROG
(PARI) {a(n) = my(A=1); for(i=1, n, A = sum(m=0, n, x^m/(1 - x*A^(2*m) +x*O(x^n))) ); polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 28 2021
STATUS
approved