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

A193200
G.f.: A(x) = Sum_{n>=0} x^n * Product_{d|n} (1 + x^d)^(n/d).
0
1, 1, 2, 3, 6, 10, 17, 32, 54, 92, 170, 311, 555, 986, 1756, 3100, 5370, 9295, 16552, 30535, 57564, 108830, 202947, 369829, 659380, 1162254, 2053619, 3675529, 6683060, 12293599, 22697283, 41734139, 76077655, 137460434, 247056655, 444239896, 803916709
OFFSET
0,3
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 3*x^3 + 6*x^4 + 9*x^5 + 20*x^6 + 31*x^7 +...
where:
A(x) = 1 + x*(1+x) + x^2*(1+x)^2*(1+x^2) + x^3*(1+x)^3*(1+x^3) + x^4*(1+x)^4*(1+x^2)^2*(1+x^4) + x^5*(1+x)^5*(1+x^5) + x^6*(1+x)^6*(1+x^2)^3*(1+x^3)^2*(1+x^6) +...
PROG
(PARI) {a(n)=local(A=1); A=1+sum(m=1, n, x^m*prod(d=1, m, if(m%d==0, (1+x^d +x*O(x^n))^(m/d), 1))); polcoeff(A, n)}
CROSSREFS
Sequence in context: A123908 A233268 A026397 * A026779 A081028 A325232
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 17 2011
STATUS
approved