A362771
E.g.f. satisfies A(x) = exp( x * (1+x) * A(x) ).
Original entry on oeis.org
1, 1, 5, 34, 353, 4756, 80107, 1617358, 38145473, 1029745576, 31326858611, 1060716408874, 39571357618465, 1612919873514028, 71321521181852411, 3400790769764598886, 173950205958460627073, 9501239617356541012432, 551961456374529522954595
Offset: 0
-
nmax = 20; A[_] = 1;
Do[A[x_] = Exp[x*(1 + x)*A[x]] + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 04 2024 *)
-
my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(-lambertw(-x*(1+x)))))
A161630
E.g.f. satisfies: A(x) = exp( x/(1 - x*A(x)) ).
Original entry on oeis.org
1, 1, 3, 19, 181, 2321, 37501, 731935, 16758393, 440525377, 13077834841, 432796650551, 15799794395749, 630773263606513, 27339525297079269, 1278550150117141231, 64171287394646697841, 3440711053857464325377
Offset: 0
E.g.f: A(x) = 1 + x + 3*x^2/2! + 19*x^3/3! + 181*x^4/4! + 2321*x^5/5! +...
log(A(x))/x = 1 + x*A(x) + x^2*A(x)^2 + x^3*A(x)^3 + x^4*A(x)^4 +...
Cf.
A161633 (e.g.f. = log(A(x))/x).
-
Table[Sum[n! * (n-k+1)^(k-1)/k! * Binomial[n-1,n-k],{k,0,n}],{n,0,20}] (* Vaclav Kotesovec, Jan 10 2014 *)
-
{a(n,m=1)=if(n==0,1,sum(k=0,n,n!/k!*m*(n-k+m)^(k-1)*binomial(n-1,n-k)))}
-
{a(n,m=1)=local(A=1+x+x*O(x^n));for(i=1,n,A=exp(x/(1-x*A)));n!*polcoeff(A^m,n)}
A143768
E.g.f. satisfies A(x) = exp(x + x^2*A(x)^2).
Original entry on oeis.org
1, 1, 3, 19, 169, 2041, 30811, 560827, 11957905, 292399345, 8069068531, 248093713891, 8411093625529, 311750189715433, 12541478207183563, 544268121894899851, 25345579186001847841, 1260715969618060192225
Offset: 0
E.g.f.: A(x) = 1 + x + 3*x^2/2! + 19*x^3/3! + 169*x^4/4! + 2041*x^5/5! + ...
A(x)^2 = 1 + 2*x + 8*x^2/2! + 56*x^3/3! + 544*x^4/4! + 6912*x^5/5! + ...
log(A(x)) = x + x^2 + 2*x^3 + 8*x^4/2! + 56*x^5/3! + 544*x^6/4! + ...
-
CoefficientList[Series[(LambertW[-2*x^2*E^(2*x)]/(-2*x^2))^(1/2), {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Jul 09 2013 *)
-
{a(n)=local(A=1+x*O(x^n));for(i=0,n,A=exp(x+x^2*A^2));(n+0)!*polcoeff(A,n)}
-
{a(n)=local(A=sum(m=0,n,1*(2*m+1)^(m-1)*(x^2)^m*exp((2*m+1)*x+x*O(x^n))/m!));n!*polcoeff(A,n)}
-
a(n,m=1)=n!*sum(k=0,n,m*(2*(n-k)+m)^(k-1)/k!*binomial(k,n-k)) \\ Paul D. Hanna, Jul 11 2009
A161631
E.g.f. satisfies A(x) = 1 + x*exp(x*A(x)).
Original entry on oeis.org
1, 1, 2, 9, 52, 425, 4206, 50827, 713000, 11500785, 208833850, 4226139731, 94226705772, 2296472176297, 60727113115046, 1732020500240955, 52998549321251536, 1731977581804704737, 60205422811336194546
Offset: 0
E.g.f.: A(x) = 1 + x + 2*x^2/2! + 9*x^3/3! + 52*x^4/4! + 425*x^5/5! +...
exp(x*A(x)) = 1 + x + 3*x^2/2! + 13*x^3/3! + 85*x^4/4! + 701*x^5/5! +...
-
CoefficientList[Series[1-LambertW[-x^2*E^x]/x, {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Jul 09 2013 *)
-
{a(n,m=1)=n!*sum(k=0,n,m*binomial(n-k+m,k)/(n-k+m)*k^(n-k)/(n-k)!)}
A362377
Square array T(n,k), n >= 0, k >= 0, read by antidiagonals downwards, where T(n,k) = n! * Sum_{j=0..floor(n/2)} (k/2)^j * (j+1)^(n-j-1) / (j! * (n-2*j)!).
Original entry on oeis.org
1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 7, 1, 1, 1, 4, 13, 34, 1, 1, 1, 5, 19, 85, 216, 1, 1, 1, 6, 25, 154, 701, 1696, 1, 1, 1, 7, 31, 241, 1456, 7261, 15898, 1, 1, 1, 8, 37, 346, 2481, 18136, 89125, 173468, 1, 1, 1, 9, 43, 469, 3776, 35761, 260002, 1277865, 2161036, 1
Offset: 0
Square array begins:
1, 1, 1, 1, 1, 1, 1, ...
1, 1, 1, 1, 1, 1, 1, ...
1, 2, 3, 4, 5, 6, 7, ...
1, 7, 13, 19, 25, 31, 37, ...
1, 34, 85, 154, 241, 346, 469, ...
1, 216, 701, 1456, 2481, 3776, 5341, ...
1, 1696, 7261, 18136, 35761, 61576, 97021, ...
A362392
E.g.f. satisfies A(x) = exp(x + x^3 * A(x)).
Original entry on oeis.org
1, 1, 1, 7, 49, 241, 2041, 26041, 282913, 3449377, 57170161, 973059121, 16847893921, 343341027745, 7680743819113, 175958943331081, 4375517632543681, 118932887426911681, 3374685950589927649, 100735118425384221025, 3217474234925998764481
Offset: 0
A143740
E.g.f. satisfies A(x) = exp(x + x^2/2 * A(x)).
Original entry on oeis.org
1, 1, 2, 7, 34, 216, 1696, 15898, 173468, 2161036, 30282076, 471599316, 8082816160, 151218316120, 3066890630168, 67031194526416, 1570793031033616, 39290173530686544, 1044871388684004304, 29440090627527552976
Offset: 0
E.g.f.: A(x) = 1 + x + 2*x^2/2! + 7*x^3/3! + 34*x^4/4! + 216*x^5/5! + ...
-
CoefficientList[Series[-2*LambertW[-x^2*E^x/2]/x^2, {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Jul 09 2013 *)
-
a[n]:=(if n<2 then 1 else a[n-1]+sum((n-1)*(n-k)*binomial(n-2,k)*a[k]*a[n-2-k],k,0,n-2)/2);
makelist(a[n],n,0,100); /* Tani Akinari, Nov 01 2017 */
-
{a(n)=local(A=1+x*O(x^n));for(i=0,n,A=exp(x+x^2*A/2));(n+0)!*polcoeff(A,n)}
-
{a(n)=local(A=sum(m=0,n,(m+1)^(m-1)*(x^2/2)^m*exp((m+1)*x+x*O(x^n))/m!)); n!*polcoeff(A,n)}
-
{a(n)=local(Ex=exp(x+x*O(x^n)),W=Ex);for(k=0,n,W=exp(x*W)); n!*polcoeff(subst(W,x,x^2*Ex/2)*Ex,n)}
A362393
E.g.f. satisfies A(x) = exp(x + x^4 * A(x)).
Original entry on oeis.org
1, 1, 1, 1, 25, 241, 1441, 6721, 87361, 1729729, 24816961, 270452161, 3705324481, 85344916801, 1992230175937, 38047293910081, 709217112938881, 17385498239168641, 514103858592923521, 14254662916125735553, 366807994235438359681, 10338786602768939575681
Offset: 0
A363354
E.g.f. satisfies A(x) = exp(x * (1 + x * A(x)^3)).
Original entry on oeis.org
1, 1, 3, 25, 277, 4221, 81421, 1891429, 51638217, 1618907257, 57332786041, 2264047223241, 98641443498973, 4700569138096885, 243213757144477029, 13579261873673960941, 813757288951509415441, 52098716516012891238129, 3548972379593741013388657
Offset: 0
A363529
E.g.f. satisfies A(x) = exp(x * (1 + x * A(x)^4)).
Original entry on oeis.org
1, 1, 3, 31, 409, 7361, 170251, 4732351, 154694961, 5814634753, 246946119571, 11698927124831, 611660759515081, 34984757221103041, 2173041881789331099, 145669007565799127551, 10482025117382045382241, 805892200757926620144641
Offset: 0
Showing 1-10 of 19 results.