OFFSET
0,2
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..400
FORMULA
G.f. A(x) satisfies:
(1) 0 = Sum_{n=-oo..+oo} x^(n^2) * (x^n - (-1)^n*A(x))^(n+1).
(2) 0 = Sum_{n=-oo..+oo} x^(n*(2*n-1)) / (1 - (-x)^n*A(x))^(n-1).
a(n) ~ c * d^n / n^(3/2), where d = 5.4057072074645439585749668665909363742748... and c = 0.8797898450003270547125706339934138835467... - Vaclav Kotesovec, Jun 22 2022
EXAMPLE
G.f.: A(x) = 1 + 2*x + 6*x^2 + 21*x^3 + 77*x^4 + 310*x^5 + 1308*x^6 + 5710*x^7 + 25605*x^8 + 117232*x^9 + 545719*x^10 + ...
where
0 = ... + x^16/(x^(-4) - A(x))^3 + x^9/(x^(-3) + A(x))^2 + x^4/(x^(-2) - A(x)) + x + (1 - A(x)) + x*(x + A(x))^2 + x^4*(x^2 - A(x))^3 + x^9*(x^3 + A(x))^4 + x^16*(x^4 - A(x))^5 + ...
PROG
(PARI) {a(n) = my(A=[1], t); for(i=1, n, A=concat(A, 0); t = ceil(sqrt(n+1));
A[#A] = polcoeff( sum(n=-t, t, x^(n^2) * (x^n - (-1)^n*Ser(A))^(n+1) ), #A-1)); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 21 2022
STATUS
approved