OFFSET
0,3
LINKS
Max Alekseyev, Table of n, a(n) for n = 0..27
FORMULA
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 4*x^3 + 26*x^4 + 106*x^5 + 816*x^6 +...
A(x/G(x)) = G(x) = x/Series_Reversion[x*A(x)], where
G(x) = 1 + x + x^2 + 17*x^4 + 408*x^6 + 69473*x^8 + 6018928*x^10 +...
and G(x) appears to continue with only even powers of x (cf. A144692).
The inverse binomial transform forms the g.f. of A202582:
A(x/(1+x))/(1+x) = 1 + x^2 + 19*x^4 + 515*x^6 + 74383*x^8 + 6816465*x^10 +...+ A202582(n)*x^n +...
PROG
(PARI) { a(n) = local(m=n+log(n+.5)\log(2), B=sum(k=0, m, x^(2^k))); if(n<0, 0, polcoeff((B+O(x^(2^m+n+1)))^(n+1)/(n+1), 2^m+n)) }
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 10 2008
EXTENSIONS
a(14), a(15) corrected and a(16)-a(23) added by Max Alekseyev, May 03 2011
a(24)-a(27) in b-file from Max Alekseyev, Dec 19 2011
STATUS
approved