login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A156907
G.f.: A(x) = 1 + x*exp( Sum_{k>=1} [A(2^k*x) - 1]^k/k ).
3
1, 1, 2, 18, 476, 38358, 11363548, 15060027956, 92500603618872, 2483766272252845670, 279689176516909339664044, 129570236404446129260308225372, 244562582019257683819447274838128648
OFFSET
0,3
COMMENTS
Conjectured to consist entirely of integers.
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 18*x^3 + 476*x^4 + 38358*x^5 +...
...
A(x) = 1 + x*exp( [A(2x)-1] + [A(4x)-1]^2/2 + [A(8x)-1]^3/3 +... ).
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=1, n, A=1+x*exp(sum(k=1, n, (subst(A, x, 2^k*x+x*O(x^n))-1)^k/k))); polcoeff(A, n)}
CROSSREFS
Cf. A156908.
Sequence in context: A082402 A208055 A306655 * A053916 A355131 A355134
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 04 2009
STATUS
approved