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!)
A206138 G.f.: A(x) = Sum_{n>=0} x^(n*(n+1)/2) / Product_{k=1..n} (1-x^k)^k. 5
1, 1, 1, 2, 2, 4, 5, 8, 10, 17, 21, 32, 44, 62, 86, 122, 164, 230, 318, 428, 591, 803, 1088, 1467, 1995, 2665, 3596, 4800, 6430, 8552, 11416, 15093, 20062, 26487, 34988, 46035, 60626, 79490, 104278, 136337, 178189, 232331, 302724, 393493, 511165, 662775, 858380 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 2*x^3 + 2*x^4 + 4*x^5 + 5*x^6 + 8*x^7 ...
where
A(x) = 1 + x/(1-x) + x^3/((1-x)*(1-x^2)^2) + x^6/((1-x)*(1-x^2)^2*(1-x^3)^3) + x^10/((1-x)*(1-x^2)^2*(1-x^3)^3*(1-x^4)^4) +...
PROG
(PARI) {a(n)=polcoeff(sum(m=0, n, x^(m*(m+1)/2)/prod(k=1, m, (1-x^k +x*O(x^n))^k)), n)}
for(n=0, 60, print1(a(n), ", "))
CROSSREFS
Cf. A206100.
Sequence in context: A126796 A325831 A240451 * A241545 A157162 A109434
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 04 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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)