|
| |
|
|
A133316
|
|
G.f.: 1/(1-x) = Sum_{n>=0} a(n)*x^n/(1+x)^(n^2).
|
|
3
| |
|
|
1, 1, 2, 8, 54, 544, 7508, 133704, 2943194, 77589536, 2391477804, 84582890704, 3382005372970, 151034046369696, 7458091839548356, 403808650013237224, 23801728042233670770, 1517930142778063770304, 104179592763803229618620
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,3
|
|
|
FORMULA
| a(n) = 1 - Sum_{j=0..n-1} a(j) * (-1)^(n-j) * C(j^2 + n-j-1, n-j) for n>0, with a(0)=1.
|
|
|
EXAMPLE
| 1/(1-x) = 1 + x/(1+x) + 2*x^2/(1+x)^4 + 8*x^3/(1+x)^9 + 54*x^4/(1+x)^16 +...
|
|
|
PROG
| (PARI) {a(n)=if(n==0, 1, polcoeff(-(1-x)*sum(m=0, n-1, a(m)*x^m/(1+x +x*O(x^n))^(m^2)), n))}
(PARI) {a(n)=if(n==0, 1, 1 - sum(j=0, n-1, a(j)*(-1)^(n-j)*binomial(j^2+n-j-1, n-j)))}
|
|
|
CROSSREFS
| Cf. A141761.
Sequence in context: A073564 A199576 A005155 * A005440 A183282 A139016
Adjacent sequences: A133313 A133314 A133315 * A133317 A133318 A133319
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Paul D. Hanna (pauldhanna(AT)juno.com), Dec 24 2010
|
| |
|
|