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

A107881
Column 0 of triangle A107880.
4
1, 2, 3, 7, 26, 141, 1034, 9693, 111522, 1528112, 24372513, 444461496, 9135985760, 209223309377, 5286985099830, 146225910921737, 4395973641599418, 142794782804641965, 4985911547339049132, 186284207595651780174
OFFSET
0,2
FORMULA
G.f.: 1 = Sum_{k>=0} a(k)*x^k*(1-x)^(2 + k*(k-1)/2).
EXAMPLE
1 = 1*(1-x)^2 + 2*x*(1-x)^2 + 3*x^2*(1-x)^3 +
7*x^3*(1-x)^5 + 26*x^4*(1-x)^8 + 141*x^5*(1-x)^12 +...
PROG
(PARI) {a(n)=polcoeff(1-sum(k=0, n-1, a(k)*x^k*(1-x+x*O(x^n))^(2+k*(k-1)/2)), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 04 2005
STATUS
approved