A090357
G.f. satisfies A^5 = BINOMIAL(A)^4; also equals A090356^4.
Original entry on oeis.org
1, 4, 26, 244, 3131, 52600, 1111940, 28559320, 865622825, 30250881420, 1196941704454, 52860066623036, 2576115583371739, 137274420821505776, 7937914900025008984, 494941882189888642832, 33096552232229291234923
Offset: 0
-
nmax = 16; sol = {a[0] -> 1};
Do[A[x_] = Sum[a[k] x^k, {k, 0, n}] /. sol; eq = CoefficientList[A[x]^5 - A[x/(1 - x)]^4/(1 - x)^4 + O[x]^(n + 1), x] == 0 /. sol; sol = sol ~Join~ Solve[eq][[1]], {n, 1, nmax}];
sol /. Rule -> Set;
a /@ Range[0, nmax] (* Jean-François Alcover, Nov 02 2019 *)
-
{a(n)=local(A); if(n<1,0,A=1+x+x*O(x^n); for(k=1,n,B=subst(A,x,x/(1-x))/(1-x)+x*O(x^n); A=A-A^5+B^4);polcoeff(A,n,x))}
A090351
G.f. satisfies A^3 = BINOMIAL(A^2).
Original entry on oeis.org
1, 1, 3, 15, 108, 1032, 12388, 179572, 3052986, 59555338, 1310677726, 32114051862, 866766965308, 25547102523604, 816335926158372, 28107705687291892, 1037367351120788551, 40852168787823027351, 1709792654612819858341
Offset: 0
A^3 = BINOMIAL(A090352), since A090352=A^2.
-
m:=40;
f:= func< n,x | Exp((&+[(&+[2^(j-1)*Factorial(j)* StirlingSecond(k,j)*x^k/k: j in [1..k]]): k in [1..n+2]])) >;
R:=PowerSeriesRing(Rationals(), m+1); // A090351
Coefficients(R!( f(m,x) )); // G. C. Greubel, Jun 08 2023
-
nmax = 18; sol = {a[0] -> 1};
Do[A[x_] = Sum[a[k] x^k, {k, 0, n}] /. sol; eq = CoefficientList[A[x]^3 - A[x/(1 - x)]^2/(1 - x) + O[x]^(n + 1), x] == 0 /. sol; sol = sol ~Join~ Solve[eq][[1]], {n, 1, nmax}];
sol /. Rule -> Set;
a /@ Range[0, nmax] (* Jean-François Alcover, Nov 02 2019 *)
With[{m=40}, CoefficientList[Series[Exp[Sum[Sum[2^(j-1)*j!* StirlingS2[k,j], {j,k}]*x^k/k, {k,m+1}]], {x,0,m}], x]] (* G. C. Greubel, Jun 08 2023 *)
-
{a(n) = my(A); if(n<0,0,A = 1+x +x*O(x^n); for(k=1,n, B = subst(A^2,x,x/(1-x))/(1-x) +x*O(x^n); A = A - A^3 + B); polcoef(A,n,x))}
for(n=0,25,print1(a(n),", "))
-
m=50
def f(n, x): return exp(sum(sum(2^(j-1)*factorial(j)* stirling_number2(k,j)*x^k/k for j in range(1,k+1)) for k in range(1,n+2)))
def A090351_list(prec):
P. = PowerSeriesRing(QQ, prec)
return P( f(m,x) ).list()
A090351_list(m-9) # G. C. Greubel, Jun 08 2023
A090358
G.f. satisfies A^6 = BINOMIAL(A^5).
Original entry on oeis.org
1, 1, 6, 66, 1071, 23151, 627236, 20452976, 779947641, 34050858041, 1674497370602, 91575747294582, 5512402585832847, 362148111801511407, 25783279860096503952, 1977349647140061768364, 162508269041154881377519
Offset: 0
A^6 = BINOMIAL(A090362), since A090362=A^5. Also,
BINOMIAL(A) = A090359^2 since 2=gcd(1+1,6),
BINOMIAL(A^2) = A090360^3 since 3=gcd(2+1,6) and
BINOMIAL(A^3) = A090361^2 since 2=gcd(3+1,6).
-
m:=40;
f:= func< n,x | Exp((&+[(&+[5^(j-1)*Factorial(j)*StirlingSecond(k,j) *x^k/k: j in [1..k]]): k in [1..n+2]])) >;
R:=PowerSeriesRing(Rationals(), m+1); // A090358
Coefficients(R!( f(m,x) )); // G. C. Greubel, Jun 08 2023
-
nmax = 16; sol = {a[0] -> 1};
Do[A[x_] = Sum[a[k] x^k, {k, 0, n}] /. sol; eq = CoefficientList[A[x]^6 - A[x/(1 - x)]^5/(1 - x) + O[x]^(n + 1), x] == 0 /. sol; sol = sol ~Join~ Solve[eq][[1]], {n, 1, nmax}];
sol /. Rule -> Set;
a /@ Range[0, nmax] (* Jean-François Alcover, Nov 02 2019 *)
With[{m=40}, CoefficientList[Series[Exp[Sum[Sum[5^(j-1)*j!* StirlingS2[k,j], {j,k}]*x^k/k, {k,m+1}]], {x,0,m}], x]] (* G. C. Greubel, Jun 08 2023 *)
-
{a(n)=local(A); if(n<1,0,A=1+x+x*O(x^n); for(k=1,n,B=subst(A^5,x,x/(1-x))/(1-x)+x*O(x^n); A=A-A^6+B);polcoeff(A,n,x))}
-
m=50
def f(n, x): return exp(sum(sum( 5^(j-1)*factorial(j)* stirling_number2(k,j)*x^k/k for j in range(1,k+1)) for k in range(1,n+2)))
def A090358_list(prec):
P. = PowerSeriesRing(QQ, prec)
return P( f(m,x) ).list()
A090358_list(m-5) # G. C. Greubel, Jun 08 2023
A090353
G.f. satisfies A^4 = BINOMIAL(A^3).
Original entry on oeis.org
1, 1, 4, 28, 286, 3886, 66260, 1361972, 32784353, 904412593, 28124223808, 973106096392, 37073604836768, 1541948625066176, 69513081435903392, 3376138396206853792, 175739519606046355540, 9760024269508314079444
Offset: 0
A^4 = BINOMIAL(A090355), since A090355=A^3. Also, BINOMIAL(A) = A090354^2.
-
m:=40;
f:= func< n,x | Exp((&+[(&+[3^(j-1)*Factorial(j)* StirlingSecond(k,j)*x^k/k: j in [1..k]]): k in [1..n+2]])) >;
R:=PowerSeriesRing(Rationals(), m+1); // A090353
Coefficients(R!( f(m,x) )); // G. C. Greubel, Jun 09 2023
-
nmax = 17; sol = {a[0] -> 1};
Do[A[x_] = Sum[a[k] x^k, {k, 0, n}] /. sol; eq = CoefficientList[A[x]^4 - A[x/(1 - x)]^3/(1 - x) + O[x]^(n + 1), x] == 0 /. sol; sol = sol ~Join~ Solve[eq][[1]], {n, 1, nmax}];
sol /. Rule -> Set;
a /@ Range[0, nmax] (* Jean-François Alcover, Nov 02 2019 *)
With[{m=40}, CoefficientList[Series[Exp[Sum[Sum[3^(j-1)*j!* StirlingS2[k,j], {j,k}]*x^k/k, {k,m+1}]], {x,0,m}], x]] (* G. C. Greubel, Jun 09 2023 *)
-
{a(n) = my(A); if(n<0,0,A=1+x +x*O(x^n); for(k=1,n, B = subst(A^3,x,x/(1-x))/(1-x)+x*O(x^n); A = A - A^4 + B); polcoef(A,n,x))}
for(n=0,20,print1(a(n),", "))
-
m=50
def f(n, x): return exp(sum(sum(3^(j-1)*factorial(j)* stirling_number2(k,j)*x^k/k for j in range(1,k+1)) for k in range(1,n+2)))
def A090353_list(prec):
P. = PowerSeriesRing(QQ, prec)
return P( f(m,x) ).list()
A090353_list(m-9) # G. C. Greubel, Jun 09 2023
A258377
O.g.f. satisfies A^2(z) = 1/(1 - z)*( BINOMIAL(BINOMIAL(A(z))) ).
Original entry on oeis.org
1, 3, 13, 79, 649, 6955, 93813, 1539991, 29884881, 669628819, 17005862301, 482399018527, 15108642099673, 517599894435643, 19247498583665029, 771922934908235751, 33206411983713679009, 1525025984109289947171, 74466779211331635306029, 3852255519421356879419631
Offset: 0
Cf.
A019538,
A080253,
A084784,
A084785,
A090351,
A090352,
A090353,
A090355,
A090356,
A090357,
A090358,
A090362,
A145901,
A258378 (N = 2),
A258379 (N = 3),
A258380 (N = 4),
A258381 (N = 5).
-
#A258377
with(combinat):
#recursively define row polynomials R(n,x) of A145901
R := proc (n, x) option remember; if n = 0 then 1 else 1 + x*add(binomial(n, i)*2^(n-i)*R(i,x), i = 0..n-1) end if; end proc:
#define a family of sequences depending on an integer parameter k
a := proc (n, k) option remember; if n = 0 then 1 else 1/n*add(R(i+1,k)*a(n-1-i,k), i = 0..n-1) end if; end proc:
# display the case k = 1
seq(a(n,1), n = 0..19);
-
R[n_, x_] := R[n, x] = If[n==0, 1, 1+x*Sum[Binomial[n, i]*2^(n-i)*R[i, x], {i, 0, n-1}]];
a[n_, k_] := a[n, k] = If[n==0, 1, 1/n*Sum[R[i+1, k]*a[n-1-i, k], {i, 0, n-1}]];
a[n_] := a[n, 1];
a /@ Range[0, 19] (* Jean-François Alcover, Oct 02 2019 *)
A384326
Expansion of Product_{k>=1} 1/(1 - k*x)^((4/5)^k).
Original entry on oeis.org
1, 20, 290, 3940, 55695, 872904, 15862460, 343510120, 8931896095, 276115329860, 9954870557826, 410042908659060, 18954497571869745, 969420292296268320, 54253252462944958560, 3293672518482920204544, 215400856153695252763320, 15088195059520554250863840
Offset: 0
-
terms = 20; A[] = 1; Do[A[x] = -4*A[x] + 5*A[x/(1-x)]^(4/5) / (1-x)^4 + O[x]^j // Normal, {j, 1, terms}]; CoefficientList[A[x], x] (* Vaclav Kotesovec, May 27 2025 *)
-
my(N=20, x='x+O('x^N)); Vec(exp(5*sum(k=1, N, sum(j=0, k, 4^j*j!*stirling(k, j, 2))*x^k/k)))
A384345
Expansion of Product_{k>=1} (1 + k*x)^((1/20) * (4/5)^k).
Original entry on oeis.org
1, 1, -4, 36, -494, 9026, -205284, 5581276, -176518189, 6366839811, -257967985400, 11601382088720, -573484266103260, 30909105184132900, -1804012437852543160, 113356419526025564808, -7629831521445348113927, 547688013439312943707673, -41765446604358525581076812
Offset: 0
-
my(N=20, x='x+O('x^N)); Vec(exp(sum(k=1, N, (-1)^(k-1)*sum(j=0, k, 4^(j-1)*j!*stirling(k, j, 2))*x^k/k)))
Showing 1-7 of 7 results.
Comments