A307441
G.f. A(x) satisfies: A(x) = Sum_{k>=0} k!*x^k*A(x)^k/(1 - x)^(k+1).
Original entry on oeis.org
1, 2, 7, 35, 216, 1527, 11927, 101056, 920055, 8960343, 93202418, 1035640333, 12305625141, 156513872514, 2131781868823, 31077520424879, 484157377851360, 8040920113043655, 141937291242762263, 2654252437895865112, 52412046969340405371, 1089506079309378596823
Offset: 0
G.f.: A(x) = 1 + 2*x + 7*x^2 + 35*x^3 + 216*x^4 + 1527*x^5 + 11927*x^6 + 101056*x^7 + 920055*x^8 + 8960343*x^9 + 93202418*x^10 + ...
-
terms = 22; A[] = 1; Do[A[x] = Sum[k! x^k A[x]^k/(1 - x)^(k + 1), {k, 0, j}] + O[x]^j, {j, 1, terms}]; CoefficientList[A[x], x]
terms = 22; A[] = 1; Do[A[x] = Sum[x^j Sum[k! Binomial[j, k] A[x]^k, {k, 0, j}], {j, 0, i}] + O[x]^i, {i, 1, terms}]; CoefficientList[A[x], x]
A307442
G.f. A(x) satisfies: A(x) = Sum_{k>=0} k!*x^k*A(x)^k/(1 - x*A(x))^(k+1).
Original entry on oeis.org
1, 2, 9, 54, 379, 2948, 24736, 220622, 2074775, 20491386, 212312349, 2310232488, 26473612772, 320735694048, 4126350096188, 56601987176510, 830233489763775, 13036492313617494, 218958840306428947, 3924128327446669670, 74779561501535316579, 1509296316416028136188
Offset: 0
G.f.: A(x) = 1 + 2*x + 9*x^2 + 54*x^3 + 379*x^4 + 2948*x^5 + 24736*x^6 + 220622*x^7 + 2074775*x^8 + 20491386*x^9 + 212312349*x^10 + ...
-
terms = 22; CoefficientList[1/x InverseSeries[Series[x/(1 + Sum[Floor[Exp[1] k!] x^k, {k, 1, terms}]), {x, 0, terms}], x], x]
terms = 22; A[] = 1; Do[A[x] = Sum[k! x^k A[x]^k/(1 - x A[x])^(k + 1), {k, 0, j}] + O[x]^j, {j, 1, terms}]; CoefficientList[A[x], x]
terms = 22; A[] = 1; Do[A[x] = 1 + Sum[Floor[Exp[1] k!] x^k A[x]^k, {k, 1, j}] + O[x]^j, {j, 1, terms}]; CoefficientList[A[x], x]
A307444
G.f. A(x) satisfies: A(x) = Sum_{k>=0} k!*x^k*A(x)^k/(1 + x*A(x))^(k+1).
Original entry on oeis.org
1, 0, 1, 2, 11, 54, 336, 2330, 18359, 161660, 1580853, 17031728, 200718372, 2569989304, 35531288796, 527506796282, 8368806193151, 141271243571640, 2527897717923387, 47789579768358498, 951677263953890739, 19910429474370487166, 436589745454529328720, 10012315468481417357976
Offset: 0
G.f.: A(x) = 1 + x^2 + 2*x^3 + 11*x^4 + 54*x^5 + 336*x^6 + 2330*x^7 + 18359*x^8 + 161660*x^9 + 1580853*x^10 + ...
-
terms = 24; CoefficientList[1/x InverseSeries[Series[x/Sum[Subfactorial[k] x^k, {k, 0, terms}], {x, 0, terms}], x], x]
terms = 24; A[] = 1; Do[A[x] = Sum[k! x^k A[x]^k/(1 + x A[x])^(k + 1), {k, 0, j}] + O[x]^j, {j, 1, terms}]; CoefficientList[A[x], x]
terms = 24; A[] = 1; Do[A[x] = Sum[Subfactorial[k] x^k A[x]^k, {k, 0, j}] + O[x]^j, {j, 1, terms}]; CoefficientList[A[x], x]
Showing 1-3 of 3 results.