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”).

A216969
G.f. satisfies: A(x) = Sum_{n>=0} x^n * A(x)^(n^2) * A(-x)^(n^2).
0
1, 1, 1, 2, 5, 17, 51, 199, 653, 2746, 9506, 41887, 150209, 683534, 2513812, 11714529, 43913589, 208460660, 793362271, 3822998161, 14731492719, 71883765642, 279923388563, 1380780426067, 5426284435421, 27023956574169, 107069182011993, 537876237669664
OFFSET
0,4
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 2*x^3 + 5*x^4 + 17*x^5 + 51*x^6 + 199*x^7 +...
A(x)*A(-x) = 1 + x^2 + 7*x^4 + 74*x^6 + 967*x^8 + 14251*x^10 + 227037*x^12 +...
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=1, n, A=1+sum(m=1, n, x^m*A^(m^2)*subst(A^(m^2), x, -x))); polcoeff(A, n)}
for(n=0, 21, print1(a(n), ", "))
CROSSREFS
Sequence in context: A148404 A061675 A148405 * A148406 A148407 A378364
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 21 2012
STATUS
approved