G.f.: A(x) = 1 + x + 2*x^2 + 4*x^3 + 9*x^4 + 16*x^5 + 36*x^6 + 64*x^7 +...
G.f.: A(x) = exp( Sum_{n>=1} F_n(x^n) * x^n/n )
where F_n(x) = exp( Sum_{k>=1} Lucas(n*k)*x^k/k ), which begin:
F_1(x) = 1 + x + 2*x^2 + 3*x^3 + 5*x^4 + 8*x^5 + 13*x^6 + 21*x^7 +...;
F_2(x) = 1 + 3*x + 8*x^2 + 21*x^3 + 55*x^4 + 144*x^5 + 377*x^6 +...;
F_3(x) = 1 + 4*x + 17*x^2 + 72*x^3 + 305*x^4 + 1292*x^5 + 5473*x^6 +...;
F_4(x) = 1 + 7*x + 48*x^2 + 329*x^3 + 2255*x^4 + 15456*x^5 +...;
F_5(x) = 1 + 11*x + 122*x^2 + 1353*x^3 + 15005*x^4 + 166408*x^5 +...;
F_6(x) = 1 + 18*x + 323*x^2 + 5796*x^3 + 104005*x^4 + 1866294*x^5 +...;
...
Also, F_n(x^n) = Product_{k=0..n-1} F(u^k*x) where u = n-th root of unity:
F_1(x) = F(x) = 1/(1-x-x^2) = g.f. of the Fibonacci numbers;
F_2(x^2) = F(x)*F(-x) = 1/(1-3*x^2+x^4);
F_3(x^3) = F(x)*F(w*x)*F(w^2*x) = 1/(1-4*x^3-x^6) where w = exp(2*Pi*I/3);
F_4(x^4) = F(x)*F(I*x)*F(-x)*F(-I*x) = 1/(1-7*x^4+x^8);
F_5(x^5) = 1/(1-11*x^5-x^10);
In general,
F_n(x^n) = 1/(1 - Lucas(n)*x^n + (-1)^n*x^(2*n)).
...
The logarithmic derivative of this sequence begins:
A203319 = [1,3,7,19,26,81,92,267,358,848,980,3061,3030,7976,...].