A336971
G.f. A(x) satisfies: A(x) = 1 - x^3 * A(x/(1 - x)) / (1 - x).
Original entry on oeis.org
1, 0, 0, -1, -1, -1, 0, 4, 15, 40, 86, 134, 16, -1060, -6119, -25187, -86678, -250846, -537819, -175233, 6998009, 55632942, 310923272, 1465146781, 6011047682, 20719304348, 49356093300, -36579100806, -1549214884054, -13807417413199, -92912464763743
Offset: 0
-
nmax = 30; A[] = 0; Do[A[x] = 1 - x^3 A[x/(1 - x)]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = -Sum[Binomial[n - 3, k] a[k], {k, 0, n - 3}]; Table[a[n], {n, 0, 30}]
A346078
G.f. A(x) satisfies: A(x) = 1 + x - x^2 * A(x/(1 - x)) / (1 - x).
Original entry on oeis.org
1, 1, -1, -2, -2, 1, 11, 33, 61, 22, -418, -2363, -8375, -19715, -6325, 263490, 1950298, 9423505, 33042827, 59212141, -283826231, -3970508822, -28167479326, -148668438363, -571280079455, -848399025239, 11052089847863, 148600718966518, 1198795581209734
Offset: 0
-
nmax = 28; A[] = 0; Do[A[x] = 1 + x - x^2 A[x/(1 - x)]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = a[1] = 1; a[n_] := a[n] = -Sum[Binomial[n - 2, k] a[k], {k, 0, n - 2}]; Table[a[n], {n, 0, 28}]
A346079
G.f. A(x) satisfies: A(x) = x - x^2 * A(x/(1 - x)) / (1 - x).
Original entry on oeis.org
0, 1, 0, -1, -2, -2, 2, 17, 54, 109, 54, -796, -5000, -19499, -52252, -44617, 577554, 5071906, 27330978, 108557573, 263947354, -453137963, -11252508862, -92193933208, -545809325184, -2441788385255, -6271647457176, 22814756330975, 492197181810550, 4609129908957190
Offset: 0
-
nmax = 29; A[] = 0; Do[A[x] = x - x^2 A[x/(1 - x)]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 0; a[1] = 1; a[n_] := a[n] = -Sum[Binomial[n - 2, k] a[k], {k, 0, n - 2}]; Table[a[n], {n, 0, 29}]
Showing 1-3 of 3 results.