OFFSET
1,2
LINKS
Paul D. Hanna, Table of n, a(n) for n = 1..300
FORMULA
G.f. A(x) also satisfies:
(1) A(x) = x + 5 * A( x/5 + 4*A(x)/5 )^2.
(2) A(x) = -x/4 + 5/4 * Series_Reversion(x - 4*A(x)^2).
(3) R(x) = -4*x + 5 * Series_Reversion(x + A(x)^2), where R(A(x)) = x.
(4) R( sqrt( x/5 - R(x)/5 ) ) = 4*x/5 + R(x)/5, where R(A(x)) = x.
a(n) = Sum_{k=0..n-1} A277295(n,k) * 4^k * 5^(n-k-1).
EXAMPLE
G.f.: A(x) = x + 5*x^2 + 90*x^3 + 2425*x^4 + 80630*x^5 + 3065810*x^6 + 128271540*x^7 + 5774538945*x^8 + 275743894750*x^9 + 13832116773110*x^10 +...
PROG
(PARI) {a(n) = my(A=[1], F=x); for(i=1, n, A=concat(A, 0); F=x*Ser(A); A[#A] = -polcoeff(subst(F, x, x - 4*F^2) - F^2, #A) ); A[n]}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
Cf. A276364.
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 09 2016
STATUS
approved