|
Search: id:A162326
|
|
|
| A162326 |
|
Let y = y(x) satisfy g(x,y(x)) = 0. The sequence a(n) is the number of terms in the expansion of the divided difference [x0,...,xn]y in terms of bivariate divided differences of g. |
|
+0 1
|
|
| 1, 3, 13, 71, 441, 2955, 20805, 151695, 1135345, 8671763, 67320573, 529626839, 4213228969, 33833367963, 273892683573, 2232832964895, 18314495896545, 151037687326755, 1251606057754605, 10416531069771111, 87029307323766681
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
FORMULA
|
Let E = N x N \ {(0,0), (0,1)} be a set of pairs of natural numbers. The number of terms a(n) is the coefficient of x^n*y^{n-1} of the generating function
1 - log(1 - \sum_{(s,t) in E} x^s*y^{s+t-1}) = 1 + \sum_{q >= 1} (\sum_{(s,t) in E} x^s*y^{s+t-1})^q / q
|
|
EXAMPLE
|
Write [0...n]y for [x0,...,xn]y and [0...s,0...t]g for [x0,...,xs;y0,...,yt]g.
For n = 1 one finds 1 term , [01]y = -[01;1]g/[0;01]g.
For n = 2 one finds 3 terms, [012]y = -[012;2]g/[0;02]g + ([01;12]g[12;2]g)/([0;02]g[1;12]g) - ([0;012]g[01;1]g[12;2]g)/([0;02]g[0;01]g[1;12]g).
|
|
PROGRAM
|
(Other) # To be executed in Sage 4.0.2 with Singular 3.0.4 as a backend. def P(n, q): ....E = CartesianProduct(range(n+1), range(n+1)) ....E = [(i, j) for (i, j) in E \ ..........if ((i, j) != (0, 0) and (i, j) != (0, 1) \ ..............and i + j <= n and 2*i + j - 1 <= 2*n - q)] . ....return sum([X^s * Y^(s+t-1) for (s, t) in E]) . R.<X, Y> = PolynomialRing(ZZ, 2) . n = 11 h = expand(1 + sum([((P(n, q))^q)/q for q in range(1, 2*n)])) for k in range(1, n+1): ....print k, h.coefficient({X:k, Y:k-1})
|
|
CROSSREFS
|
Cf. A003262, which is the analogous sequence for implicit derivatives.
Sequence in context: A121586 A024337 A001495 this_sequence A122455 A126390 A003319
Adjacent sequences: A162323 A162324 A162325 this_sequence A162327 A162328 A162329
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Georg Muntingh (georg.muntingh(AT)gmail.com), Jul 01 2009
|
|
|
Search completed in 0.002 seconds
|