[go: up one dir, main page]

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

A221547
G.f.: Sum_{n>=0} x^n * (1+x)^(n*(n+1)/2) / Product_{k=1..n} (1 + x*(1+x)^k).
3
1, 1, 1, 1, 2, 3, 7, 15, 38, 102, 291, 894, 2881, 9814, 35049, 130827, 509444, 2062695, 8667549, 37723094, 169735610, 788356105, 3774150884, 18599067832, 94236062123, 490360221092, 2617839307733, 14324884376705, 80274898974872, 460315751077622, 2698920189467845
OFFSET
0,5
LINKS
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + x^3 + 2*x^4 + 3*x^5 + 7*x^6 + 15*x^7 + 38*x^8 +...
where
A(x) = 1 + x*(1+x)/(1 + x*(1+x)) + x^2*(1+x)^3/((1+x*(1+x))*(1+x*(1+x)^2)) + x^3*(1+x)^6/((1+x*(1+x))*(1+x*(1+x)^2)*(1+x*(1+x)^3)) + x^4*(1+x)^10/((1+x*(1+x))*(1+x*(1+x)^2)*(1+x*(1+x)^3)*(1+x*(1+x)^4)) +...
PROG
(PARI) {a(n)=polcoeff(sum(m=0, n, x^m*(1+x)^(m*(m+1)/2)/prod(k=1, m, (1+x*(1+x)^k+x*O(x^n)))), n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A114584 A328779 A039826 * A289471 A289470 A368564
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 19 2013
STATUS
approved