OFFSET
2,2
COMMENTS
LINKS
Paul D. Hanna, Table of n, a(n) for n = 2..520
FORMULA
G.f. A(x) = Sum_{n>=2} a(n)*x^n satisfies the following formulas.
(1) A(x - A(x)) = x^2/(1 - x^2).
(2) A(x) = B(x)^2/(1 - B(x)^2) where B(x) = x + A(B(x)) and B(x - A(x)) = x.
(3) A(x) = B(x)^2/(1 - B(x)^2) where B(x) = x + Sum_{n>=1} d^(n-1)/dx^(n-1) A(x)^n / n!.
EXAMPLE
G.f.: A(x) = x^2 + 2*x^3 + 10*x^4 + 62*x^5 + 469*x^6 + 4028*x^7 + 37984*x^8 + 385202*x^9 + 4144798*x^10 + 46882400*x^11 + 553733875*x^12 + ...
where A(x - A(x)) = x^2/(1 - x^2).
Let B(x) = Series_Reversion(x - A(x)), where
B(x) = x + x^2 + 4*x^3 + 25*x^4 + 190*x^5 + 1645*x^6 + 15652*x^7 + 160186*x^8 + 1739032*x^9 + 19838179*x^10 + ... + A380678(n)*x^n + ...
then B(x) = x + A(B(x)).
PROG
(PARI) /* Generates N terms of this sequence */
N = 40; A=x^2; for(m=1, N, A=truncate(A); B = serreverse(x - A +x*O(x^m)); A = B^2/(1-B^2) ); Vec(A)
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Paul D. Hanna, Feb 13 2025
STATUS
approved