cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-6 of 6 results.

A356783 Coefficients in the power series A(x) such that: 1 = Sum_{n=-oo..+oo} x^(2*n+1) * (1 - x^n)^(n+1) * A(x)^n.

Original entry on oeis.org

1, 1, 2, 6, 17, 50, 163, 525, 1770, 6066, 21154, 74787, 267371, 965233, 3513029, 12877687, 47499333, 176167086, 656568385, 2457710598, 9236079055, 34832753818, 131792634266, 500121476517, 1902979982421, 7258942377746, 27752992782498, 106333425162358, 408213503595652
Offset: 0

Views

Author

Paul D. Hanna, Sep 15 2022

Keywords

Comments

Related identity: 0 = Sum_{n=-oo..+oo} x^(2*n+1) * (1 - x^n)^(n+1).

Examples

			G.f.: A(x) = 1 + x + 2*x^2 + 6*x^3 + 17*x^4 + 50*x^5 + 163*x^6 + 525*x^7 + 1770*x^8 + 6066*x^9 + 21154*x^10 + 74787*x^11 + 267371*x^12 + ...
such that
1 = ... + x^(-3)*(1 - x^(-2))^(-1)/A(x)^2 + x^(-1)/A(x) + x*0 + x^3*(1 - x)^2*A(x) + x^5*(1 - x^2)^3*A(x)^2 + x^7*(1 - x^3)^4*A(x)^3 + ... + x^(2*n+1)*(1 - x^n)^(n+1)*A(x)^n + ...
also
-A(x)^3 = ... + x^(-3)*(A(x) - x^(-2))^(-1)*A(x)^2 + x^(-1)*A(x) + x*(A(x) - 1) + x^3*(A(x) - x)^2/A(x) + x^5*(1 - x^2)^3/A(x)^2 + x^7*(A(x) - x^3)^4/A(x)^3 + ... + x^(2*n+1)*(A(x) - x^n)^(n+1)/A(x)^n + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1]); for(i=0,n, A = concat(A,0);
    A[#A] = polcoeff(1 - sum(n=-#A\2-1,#A\2+1, x^(2*n+1) * (1 - x^n +x*O(x^#A))^(n+1) * Ser(A)^n  ),#A-2); );A[n+1]}
    for(n=0,30, print1(a(n),", "))

Formula

G.f. A(x) = Sum_{n>=0} a(n) * x^n satisfies the following relations.
(1) 1 = Sum_{n=-oo..+oo} x^(2*n+1) * (1 - x^n)^(n+1) * A(x)^n.
(2) x*A(x) = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) / ( (1 - x^(n+1))^n * A(x)^n ).
(3) -x*A(x)^2 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (1 - x^(n+1)*A(x))^n.
(4) -A(x)^3 = Sum_{n=-oo..+oo} x^(2*n+1) * (A(x) - x^n)^(n+1) / A(x)^n.
(5) 0 = Sum_{n=-oo..+oo} x^(2*n+1) * (1 - x^n*A(x))^(n+1) / A(x)^n.
(6) 0 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (A(x) - x^(n+1))^n.
a(n) ~ c * d^n / n^(3/2), where d = 4.04962821886295599791727073173857... and c = 0.613483546803830745310382482744... - Vaclav Kotesovec, Mar 22 2025

A357201 Coefficients in the power series A(x) such that: A(x) = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1) * A(x)^n.

Original entry on oeis.org

1, 1, 1, 3, 1, 5, -26, -75, -430, -1183, -4249, -10191, -27443, -42735, -35715, 341250, 2073952, 9886007, 36365567, 124484714, 364966293, 965150205, 1958034669, 2048555297, -9110607428, -76703557685, -383500583452, -1539890758482, -5456784935108, -17115737273816
Offset: 0

Views

Author

Paul D. Hanna, Sep 17 2022

Keywords

Comments

Compare to A357151 and A357161.
Related identity: 0 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1).
Related identity: 0 = Sum_{n=-oo..+oo} x^(k*n) * (y - x^(n+1-k))^n, which holds for any positive integer k and real y.

Examples

			G.f.: A(x) = 1 + x + x^2 + 3*x^3 + x^4 + 5*x^5 - 26*x^6 - 75*x^7 - 430*x^8 - 1183*x^9 - 4249*x^10 - 10191*x^11 - 27443*x^12 + ...
such that
A(x) = ... + x^(-2)*(1 - 1/x)^(-1)/A(x)^2 + x^(-1)/A(x) + (1 - x) + x*(1 - x^2)*A(x) + x^2*(1 - x^3)^3*A(x)^2 + x^3*(1 - x^4)^4*A(x)^3 + ... + x^n*(1 - x^(n+1))^(n+1)*A(x)^n + ...
also
-A(x)^4 = ... + x^(-2)*(A(x) - 1/x)^(-1)*A(x)^2 + x^(-1)*A(x) + (A(x) - x) + x*(A(x) - x^2)^2/A(x) + x^2*(A(x) - x^3)^3/A(x)^2 + x^3*(A(x) - x^4)^4/A(x)^3 + ... + x^n*(A(x) - x^(n+1))^(n+1)/A(x)^n + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1]); for(i=0, n, A = concat(A, 0);
    A[#A] = polcoeff(Ser(A) - sum(n=-#A-2, #A+2, x^(n) * (1 - x^(n+1) +x*O(x^#A))^(n+1) * Ser(A)^n  ), #A-2); ); A[n+1]}
    for(n=0, 30, print1(a(n), ", "))

Formula

G.f. A(x) = Sum_{n>=0} a(n) * x^n satisfies the following relations.
(1) A(x) = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1) * A(x)^n.
(2) x*A(x)^2 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) / ( (1 - x^n)^n * A(x)^n ).
(3) -x*A(x)^3 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (1 - x^n*A(x))^n.
(4) -A(x)^4 = Sum_{n=-oo..+oo} x^n * (A(x) - x^(n+1))^(n+1) / A(x)^n.
(5) 0 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1)*A(x))^(n+1) / A(x)^n.
(6) 0 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (A(x) - x^n)^n.

A357202 Coefficients in the power series A(x) such that: A(x)^2 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1) * A(x)^n.

Original entry on oeis.org

1, 1, 2, 9, 35, 182, 921, 5062, 28234, 162330, 947773, 5622641, 33747694, 204676547, 1252083028, 7717376754, 47878314072, 298749048454, 1873637869199, 11804288518884, 74673607921030, 474128308291896, 3020493580980524, 19301224674496592, 123681469340775568
Offset: 0

Views

Author

Paul D. Hanna, Sep 17 2022

Keywords

Comments

Compare to A357152 and A357162.
Related identity: 0 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1).
Related identity: 0 = Sum_{n=-oo..+oo} x^(k*n) * (y - x^(n+1-k))^n, which holds for any positive integer k and real y.

Examples

			G.f.: A(x) = 1 + x + 2*x^2 + 9*x^3 + 35*x^4 + 182*x^5 + 921*x^6 + 5062*x^7 + 28234*x^8 + 162330*x^9 + 947773*x^10 + 5622641*x^11 + 33747694*x^12 + ...
such that
A(x)^2 = ... + x^(-2)*(1 - 1/x)^(-1)/A(x)^2 + x^(-1)/A(x) + (1 - x) + x*(1 - x^2)*A(x) + x^2*(1 - x^3)^3*A(x)^2 + x^3*(1 - x^4)^4*A(x)^3 + ... + x^n*(1 - x^(n+1))^(n+1)*A(x)^n + ...
also
-A(x)^5 = ... + x^(-2)*(A(x) - 1/x)^(-1)*A(x)^2 + x^(-1)*A(x) + (A(x) - x) + x*(A(x) - x^2)^2/A(x) + x^2*(A(x) - x^3)^3/A(x)^2 + x^3*(A(x) - x^4)^4/A(x)^3 + ... + x^n*(A(x) - x^(n+1))^(n+1)/A(x)^n + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1]); for(i=0, n, A = concat(A, 0);
    A[#A] = polcoeff(Ser(A)^2 - sum(n=-#A-2, #A+2, x^(n) * (1 - x^(n+1) +x*O(x^#A))^(n+1) * Ser(A)^n  ), #A-2); ); A[n+1]}
    for(n=0, 30, print1(a(n), ", "))

Formula

G.f. A(x) = Sum_{n>=0} a(n) * x^n satisfies the following relations.
(1) A(x)^2 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1) * A(x)^n.
(2) x*A(x)^3 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) / ( (1 - x^n)^n * A(x)^n ).
(3) -x*A(x)^4 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (1 - x^n*A(x))^n.
(4) -A(x)^5 = Sum_{n=-oo..+oo} x^n * (A(x) - x^(n+1))^(n+1) / A(x)^n.
(5) 0 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1)*A(x))^(n+1) / A(x)^n.
(6) 0 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (A(x) - x^n)^n.

A357203 Coefficients in the power series A(x) such that: A(x)^3 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1) * A(x)^n.

Original entry on oeis.org

1, 1, 3, 18, 111, 800, 5990, 46995, 379090, 3129713, 26301576, 224282112, 1935668344, 16876028036, 148410725830, 1314933853171, 11726585616205, 105178923513494, 948185788906100, 8586757756571261, 78079244607685021, 712592590813142079, 6525273550226573555
Offset: 0

Views

Author

Paul D. Hanna, Sep 17 2022

Keywords

Comments

Compare to A357153 and A357163.
Related identity: 0 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1).
Related identity: 0 = Sum_{n=-oo..+oo} x^(k*n) * (y - x^(n+1-k))^n, which holds for any positive integer k and real y.

Examples

			G.f.: A(x) = 1 + x + 3*x^2 + 18*x^3 + 111*x^4 + 800*x^5 + 5990*x^6 + 46995*x^7 + 379090*x^8 + 3129713*x^9 + 26301576*x^10 + ...
such that
A(x)^3 = ... + x^(-2)*(1 - 1/x)^(-1)/A(x)^2 + x^(-1)/A(x) + (1 - x) + x*(1 - x^2)*A(x) + x^2*(1 - x^3)^3*A(x)^2 + x^3*(1 - x^4)^4*A(x)^3 + ... + x^n*(1 - x^(n+1))^(n+1)*A(x)^n + ...
also
-A(x)^6 = ... + x^(-2)*(A(x) - 1/x)^(-1)*A(x)^2 + x^(-1)*A(x) + (A(x) - x) + x*(A(x) - x^2)^2/A(x) + x^2*(A(x) - x^3)^3/A(x)^2 + x^3*(A(x) - x^4)^4/A(x)^3 + ... + x^n*(A(x) - x^(n+1))^(n+1)/A(x)^n + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1]); for(i=0, n, A = concat(A, 0);
    A[#A] = polcoeff(Ser(A)^3 - sum(n=-#A-2, #A+2, x^(n) * (1 - x^(n+1) +x*O(x^#A))^(n+1) * Ser(A)^n  ), #A-2); ); A[n+1]}
    for(n=0, 30, print1(a(n), ", "))

Formula

G.f. A(x) = Sum_{n>=0} a(n) * x^n satisfies the following relations.
(1) A(x)^3 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1) * A(x)^n.
(2) x*A(x)^4 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) / ( (1 - x^n)^n * A(x)^n ).
(3) -x*A(x)^5 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (1 - x^n*A(x))^n.
(4) -A(x)^6 = Sum_{n=-oo..+oo} x^n * (A(x) - x^(n+1))^(n+1) / A(x)^n.
(5) 0 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1)*A(x))^(n+1) / A(x)^n.
(6) 0 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (A(x) - x^n)^n.

A357204 Coefficients in the power series A(x) such that: A(x)^4 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1) * A(x)^n.

Original entry on oeis.org

1, 1, 4, 30, 245, 2256, 21849, 220655, 2294241, 24402721, 264251525, 2903503779, 32289673568, 362755014742, 4110792367801, 46933876797456, 539362815736466, 6234031681945681, 72421584940086375, 845164178044504188, 9903469546224045896, 116475680442085941037
Offset: 0

Views

Author

Paul D. Hanna, Sep 17 2022

Keywords

Comments

Compare to A357154 and A357164.
Related identity: 0 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1).
Related identity: 0 = Sum_{n=-oo..+oo} x^(k*n) * (y - x^(n+1-k))^n, which holds for any positive integer k and real y.

Examples

			G.f.: A(x) = 1 + x + 4*x^2 + 30*x^3 + 245*x^4 + 2256*x^5 + 21849*x^6 + 220655*x^7 + 2294241*x^8 + 24402721*x^9 + 264251525*x^10 + ...
such that
A(x)^4 = ... + x^(-2)*(1 - 1/x)^(-1)/A(x)^2 + x^(-1)/A(x) + (1 - x) + x*(1 - x^2)*A(x) + x^2*(1 - x^3)^3*A(x)^2 + x^3*(1 - x^4)^4*A(x)^3 + ... + x^n*(1 - x^(n+1))^(n+1)*A(x)^n + ...
also
-A(x)^7 = ... + x^(-2)*(A(x) - 1/x)^(-1)*A(x)^2 + x^(-1)*A(x) + (A(x) - x) + x*(A(x) - x^2)^2/A(x) + x^2*(A(x) - x^3)^3/A(x)^2 + x^3*(A(x) - x^4)^4/A(x)^3 + ... + x^n*(A(x) - x^(n+1))^(n+1)/A(x)^n + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1]); for(i=0, n, A = concat(A, 0);
    A[#A] = polcoeff(Ser(A)^4 - sum(n=-#A-2, #A+2, x^(n) * (1 - x^(n+1) +x*O(x^#A))^(n+1) * Ser(A)^n  ), #A-2); ); A[n+1]}
    for(n=0, 30, print1(a(n), ", "))

Formula

G.f. A(x) = Sum_{n>=0} a(n) * x^n satisfies the following relations.
(1) A(x)^4 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1) * A(x)^n.
(2) x*A(x)^5 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) / ( (1 - x^n)^n * A(x)^n ).
(3) -x*A(x)^6 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (1 - x^n*A(x))^n.
(4) -A(x)^7 = Sum_{n=-oo..+oo} x^n * (A(x) - x^(n+1))^(n+1) / A(x)^n.
(5) 0 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1)*A(x))^(n+1) / A(x)^n.
(6) 0 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (A(x) - x^n)^n.

A357205 Coefficients in the power series A(x) such that: A(x)^5 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1) * A(x)^n.

Original entry on oeis.org

1, 1, 5, 45, 453, 5072, 59964, 738449, 9365617, 121511799, 1605113475, 21514501261, 291880434822, 4000334186684, 55304105835751, 770323876417969, 10800108248187952, 152293211204657100, 2158477865404685913, 30732066480408276249, 439351185869943970405
Offset: 0

Views

Author

Paul D. Hanna, Sep 17 2022

Keywords

Comments

Compare to A357155 and A357165.
Related identity: 0 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1).
Related identity: 0 = Sum_{n=-oo..+oo} x^(k*n) * (y - x^(n+1-k))^n, which holds for any positive integer k and real y.

Examples

			G.f.: A(x) = 1 + x + 5*x^2 + 45*x^3 + 453*x^4 + 5072*x^5 + 59964*x^6 + 738449*x^7 + 9365617*x^8 + 121511799*x^9 + 1605113475*x^10 + ...
such that
A(x)^5 = ... + x^(-2)*(1 - 1/x)^(-1)/A(x)^2 + x^(-1)/A(x) + (1 - x) + x*(1 - x^2)*A(x) + x^2*(1 - x^3)^3*A(x)^2 + x^3*(1 - x^4)^4*A(x)^3 + ... + x^n*(1 - x^(n+1))^(n+1)*A(x)^n + ...
also
-A(x)^8 = ... + x^(-2)*(A(x) - 1/x)^(-1)*A(x)^2 + x^(-1)*A(x) + (A(x) - x) + x*(A(x) - x^2)^2/A(x) + x^2*(A(x) - x^3)^3/A(x)^2 + x^3*(A(x) - x^4)^4/A(x)^3 + ... + x^n*(A(x) - x^(n+1))^(n+1)/A(x)^n + ...
		

Crossrefs

Programs

  • PARI
    {a(n) = my(A=[1]); for(i=0, n, A = concat(A, 0);
    A[#A] = polcoeff(Ser(A)^5 - sum(n=-#A-2, #A+2, x^(n) * (1 - x^(n+1) +x*O(x^#A))^(n+1) * Ser(A)^n  ), #A-2); ); A[n+1]}
    for(n=0, 30, print1(a(n), ", "))

Formula

G.f. A(x) = Sum_{n>=0} a(n) * x^n satisfies the following relations.
(1) A(x)^5 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1))^(n+1) * A(x)^n.
(2) x*A(x)^6 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) / ( (1 - x^n)^n * A(x)^n ).
(3) -x*A(x)^7 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (1 - x^n*A(x))^n.
(4) -A(x)^8 = Sum_{n=-oo..+oo} x^n * (A(x) - x^(n+1))^(n+1) / A(x)^n.
(5) 0 = Sum_{n=-oo..+oo} x^n * (1 - x^(n+1)*A(x))^(n+1) / A(x)^n.
(6) 0 = Sum_{n=-oo..+oo} (-1)^n * x^(n*(n-1)) * A(x)^n / (A(x) - x^n)^n.
Showing 1-6 of 6 results.