OFFSET
0,3
FORMULA
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 6*x^3 + 15*x^4 + 26*x^5 + 66*x^6 +...
G.f.: A(x) = 1/(1-x) * G(x^2,2)^2 * G(x^3,3)^3 * G(x^4,4)^4 *...
where the functions G(x,n) are g.f.s of well-known sequences:
G(x,2) = g.f. of A000108 = 1 + x*G(x,2)^2;
G(x,3) = g.f. of A001764 = 1 + x*G(x,3)^3;
G(x,4) = g.f. of A002293 = 1 + x*G(x,4)^4 ; etc.
Explicitly, the product yielding the g.f. A(x) begins:
A(x) = [1 + x + x^2 + x^3 +...] * [1 + 2*x^2 + 5*x^4 + 14*x^6 +...] * [1 + 3*x^3 + 12*x^6 + 55*x^9 +...] * [1 + 4*x^4 + 22*x^8 + 140*x^12 +...] * ...
PROG
(PARI) a(n)=if(n==0, 1, polcoeff(exp(sum(m=1, n, x^m*sumdiv(m, d, binomial(m, d)/gcd(m, d)))), n))
(PARI) a(n)=polcoeff(prod(m=1, n, (1/x*serreverse(x/(1+x^m +x*O(x^n))))^m), n)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 11 2007
STATUS
approved