login
A277308
G.f. satisfies: A(x - 3*A(x)^2) = x - A(x)^2.
13
1, 2, 20, 298, 5492, 116124, 2710776, 68308170, 1831522940, 51744512380, 1529687560328, 47075470016012, 1502258036769256, 49560341916549320, 1686236991420431760, 59054595629732284890, 2125432920387784135812, 78509698415432235272292, 2972996232264052816975752, 115303660044380692013332428
OFFSET
1,2
LINKS
FORMULA
G.f. A(x) also satisfies:
(1) A(x) = x + 2 * A( 3*A(x)/2 - x/2 )^2.
(2) A(x) = x/3 + 2/3 * Series_Reversion(x - 3*A(x)^2).
(3) R(x) = 3*x - 2 * Series_Reversion(x - A(x)^2), where R(A(x)) = x.
(4) R( sqrt( x/2 - R(x)/2 ) ) = 3*x/2 - R(x)/2, where R(A(x)) = x.
a(n) = Sum_{k=0..n-1} A277295(n,k) * 3^k * 2^(n-k-1).
EXAMPLE
G.f.: A(x) = x + 2*x^2 + 20*x^3 + 298*x^4 + 5492*x^5 + 116124*x^6 + 2710776*x^7 + 68308170*x^8 + 1831522940*x^9 + 51744512380*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-3*F^2) + F^2, #A) ); A[n]}
for(n=1, 30, print1(a(n), ", "))
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 09 2016
STATUS
approved