login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A219229 G.f.: exp( Sum_{n>=1} x^n/n * Product_{k>=1} (1 + x^(n*k)*(1 + x^n)^k) ). 5
1, 1, 2, 4, 9, 20, 45, 97, 217, 476, 1043, 2256, 4890, 10540, 22695, 48614, 103856, 221103, 469738, 995299, 2104514, 4439410, 9345471, 19631897, 41162937, 86148416, 179987656, 375411910, 781773332, 1625473202, 3374684346, 6996168098, 14483902403, 29945326755 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare to the dual g.f. of A218576:
exp( Sum_{n>=1} x^n/n * Product_{k>=1} (1 + x^(n*k)*(1 + x^k)^n) ).
LINKS
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 4*x^3 + 9*x^4 + 20*x^5 + 45*x^6 + 97*x^7 +...
where
log(A(x)) = x/1*((1+x*(1+x))*(1+x^2*(1+x)^2)*(1+x^3*(1+x)^3)*...) +
x^2/2*((1+x^2*(1+x^2))*(1+x^4*(1+x^2)^2)*(1+x^6*(1+x^2)^3)*...) +
x^3/3*((1+x^3*(1+x^3))*(1+x^6*(1+x^3)^2)*(1+x^9*(1+x^3)^3)*...) +
x^4/4*((1+x^4*(1+x^4))*(1+x^8*(1+x^4)^2)*(1+x^12*(1+x^4)^3)*...) +...
Explicitly,
log(A(x)) = x + 3*x^2/2 + 7*x^3/3 + 19*x^4/4 + 46*x^5/5 + 111*x^6/6 + 232*x^7/7 + 555*x^8/8 + 1204*x^9/9 + 2608*x^10/10 +...
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n+1, x^m/m*prod(k=1, n\m, (1+x^(m*k)*(1+x^m+x*O(x^n))^k )))), n)}
for(n=0, 50, print1(a(n), ", "))
CROSSREFS
Sequence in context: A214952 A360871 A199296 * A091620 A208738 A144686
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 15 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)