OFFSET
0,3
COMMENTS
FORMULA
G.f. satisfies: A(x) = 1 + Sum_{n>=1} A(x)^n * x^A026255(n).
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 9*x^3 + 32*x^4 + 122*x^5 + 490*x^6 +...
where A(x) = 1 + x*A(x)^2 + x^2*A(x) + x^3*A(x)^4 + x^4*A(x)^3 + x^5*A(x)^7 + x^6*A(x)^9 + x^7*A(x)^5 + x^8*A(x)^11 + x^9*A(x)^6 + x^10*A(x)^14 +...
which also equals: A(x) = 1 + A(x)*x^2 + A(x)^2*x + A(x)^3*x^4 + A(x)^4*x^3 + A(x)^5*x^7 + A(x)^6*x^9 + A(x)^7*x^5 + A(x)^8*x^11 + A(x)^9*x^6 + A(x)^10*x^14 +...
In the above series, the exponents begin:
A026255 = [2,1,4,3,7,9,5,11,6,14,8,16,18,10,21,12,23,13,26,28,15,30...].
PROG
(PARI) {a(n)=local(A=1+x, s=sqrt(3), t=(3+sqrt(3))/2); for(i=1, n, A=1+sum(m=1, n, x^floor(m*s)*(A+x*O(x^n))^floor(m*t)+ x^floor(m*t)*(A+x*O(x^n))^floor(m*s))); polcoeff(A, n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 01 2011
STATUS
approved