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-2 of 2 results.

A190862 G.f. satisfies: A(x) = Product_{n>=1} (1 + x^n*A(x))/(1 - x^n*A(x)).

Original entry on oeis.org

1, 2, 8, 36, 174, 888, 4716, 25808, 144568, 825030, 4780176, 28045860, 166295716, 994959560, 5999349896, 36420226288, 222415222446, 1365445230212, 8422174103796, 52168047039764, 324366739546304, 2023789526326096
Offset: 0

Views

Author

Paul D. Hanna, May 21 2011

Keywords

Comments

Related q-series (Heine) identity:
1 + Sum_{n>=1} x^n*Product_{k=0..n-1} (y+q^k)*(z+q^k)/((1-x*q^k)*(1-q^(k+1)) = Product_{n>=0} (1+x*y*q^n)*(1+x*z*q^n)/((1-x*q^n)*(1-x*y*z*q^n)); here q=x, x=x*A(x), y=1, z=0.

Examples

			G.f.: A(x) = 1 + 2*x + 8*x^2 + 36*x^3 + 174*x^4 + 888*x^5 + ...
The g.f. A = A(x) satisfies the following relations:
(0) A = (1+x*A)/(1-x*A) * (1+x^2*A)/(1-x^2*A) * (1+x^3*A)/(1-x^3*A) * ...
(1) A = 1 + 2*x*A/(1-x) + 2*x^2*A^2*(1+x)/((1-x)*(1-x^2)) + 2*x^3*A^3*(1+x)*(1+x^2)/((1-x)*(1-x^2)*(1-x^3)) + ...
(2) A = 1 + 2*x*A/((1-x*A)*(1-x)) + 2*x^3*A^2*(1+x)/((1-x*A)*(1-x^2*A)*(1-x)*(1-x^2)) + 2*x^6*A^3*(1+x)*(1+x^2)/((1-x*A)*(1-x^2*A)*(1-x^3*A)*(1-x)*(1-x^2)*(1-x^3)) + ...
(3) A^2 = 1 + 4*x*A/((1-x*A)*(1-x)) + 4*x^2*A^2*(1+x)^2/((1-x*A)*(1-x^2*A)*(1-x)*(1-x^2)) + 4*x^3*A^3*(1+x)^2*(1+x^2)^2/((1-x*A)*(1-x^2*A)*(1-x^3*A)*(1-x)*(1-x^2)*(1-x^3)) + ... (cf. A192619)
		

Crossrefs

Cf. A145267, A145268, A190861, A192619 (g.f. A(x)^2), A192621.

Programs

  • Mathematica
    nmax = 30; A[] = 0; Do[A[x] = Product[(1 + x^k*A[x])/(1 - x^k*A[x]), {k, 1, nmax}] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] (* Vaclav Kotesovec, Sep 26 2023 *)
    (* Calculation of constant d: *) 1/r /. FindRoot[{(s-1)*QPochhammer[-s, r] == -s*(s+1) * QPochhammer[s, r], (s^2 - 1)*(QPolyGamma[0, Log[-s]/Log[r], r] - QPolyGamma[0, Log[s]/Log[r], r]) + Log[r]*(s^2 - 2*s - 1) == 0}, {r, 1/8}, {s, 2}, WorkingPrecision -> 120] (* Vaclav Kotesovec, Sep 26 2023 *)
  • PARI
    {a(n)=local(A=1+x);for(i=1,n,A=prod(m=1,n,(1+x^m*A)/(1-x^m*A+x*O(x^n))));polcoeff(A,n)}
    
  • PARI
    {a(n)=local(A=1+x);for(i=1,n,A=1+sum(m=1,n,x^m*A^m*prod(k=1,m,(1+x^(k-1))/(1-x^k+x*O(x^n)))));polcoeff(A,n)}
    
  • PARI
    {a(n)=local(A=1+x);for(i=1,n,A=1+sum(m=1,n,x^(m*(m+1)/2)*A^m*prod(k=1,m,(1+x^(k-1))/((1-x^k*A+x*O(x^n))*(1-x^k)))));polcoeff(A,n)}
    
  • PARI
    {a(n)=local(A=1+x);for(i=1,n,A=sqrt(1+sum(m=1,n,x^m*A^m*prod(k=1,m,(1+x^(k-1))^2/((1-x^k*A+x*O(x^n))*(1-x^k))))));polcoeff(A,n)}

Formula

G.f. satisfies:
(1) A(x) = 1 + Sum_{n>=1} x^n*A(x)^n*Product_{k=1..n} (1+x^(k-1))/(1-x^k) due to the q-binomial theorem.
(2) A(x) = 1 + Sum_{n>=1} x^(n*(n+1)/2)*A(x)^n*Product_{k=1..n} (1+x^(k-1))/((1-x^k*A(x))*(1-x^k)) due to the Heine identity.
(3) A(x)^2 = 1 + Sum_{n>=1} x^n*A(x)^n * Product_{k=1..n} (1+x^(k-1))^2/((1-x^k*A(x))*(1-x^k)) due to the Heine identity.
a(n) ~ c * d^n / n^(3/2), where d = 6.6934289011143535333002543297069340451347... and c = 0.946606599119645056034760125205426820822370610602636232678... - Vaclav Kotesovec, Sep 26 2023
Radius of convergence r = 0.149400257293166331446262618504038357688... = 1/d and A(r) = 2.500666835731534833961673247439001530869... satisfy A(r) = 1 / Sum_{n>=1} 2*r^n/(1 - r^(2*n)*A(r)^2) and A(r) = Product_{n>=1} (1 + r^n*A(r))/(1 - r^n*A(r)). - Paul D. Hanna, Mar 02 2024

A209357 G.f. satisfies: A(x) = Product_{n>=1} (1 + x^(n+1)*A(x)) / (1 - x^n).

Original entry on oeis.org

1, 1, 3, 6, 14, 31, 72, 166, 390, 922, 2197, 5273, 12728, 30892, 75327, 184476, 453505, 1118798, 2768843, 6872437, 17103411, 42670102, 106697009, 267359854, 671260241, 1688411587, 4254084396, 10735614274, 27132998096, 68671994940, 174035109012, 441607820562
Offset: 0

Views

Author

Paul D. Hanna, Mar 06 2012

Keywords

Examples

			G.f.: A(x) = 1 + x + 3*x^2 + 6*x^3 + 14*x^4 + 31*x^5 + 72*x^6 + 166*x^7 +...
where the g.f. satisfies the identity:
A(x) = (1+x^2*A(x))/(1-x) * (1+x^3*A(x))/(1-x^2) * (1+x^4*A(x))/(1-x^3) *...
A(x) = 1 + x*(1+x*A(x))/(1-x) + x^2*(1+x*A(x))*(1+x^2*A(x))/((1-x)*(1-x^2)) + x^3*(1+x*A(x))*(1+x^2*A(x))*(1+x^3*A(x))/((1-x)*(1-x^2)*(1-x^3)) +...
		

Crossrefs

Programs

  • Mathematica
    (* Calculation of constants {d,c}: *) Chop[{1/r, Sqrt[(s*(1 + r*s)*Log[r]*(s*(1 + r*s)*(-QPochhammer[r]*(Log[1 - r] + Log[r] + QPolyGamma[0, 1, r]) + r*Log[r]*Derivative[0, 1][QPochhammer][r, r]) - r*Log[r]*Derivative[0, 1][QPochhammer][-r*s, r])) / (2*Pi*QPochhammer[r] * (r*s*Log[r]^2 + (1 + r*s)^2*QPolyGamma[1, Log[-r*s]/Log[r], r]))]} /. FindRoot[{s*(1 + r*s) == QPochhammer[-r*s, r]/QPochhammer[r], Log[1-r] + r*s*Log[r]/(1 + r*s) + QPolyGamma[0, Log[-r*s]/Log[r], r] == -Log[r]}, {r, 2/5}, {s, 2}, WorkingPrecision -> 120]] (* Vaclav Kotesovec, Jun 10 2025 *)
  • PARI
    {a(n)=local(A=1+x); for(i=1, n, A=prod(m=1, n, (1+x^(m+1)*A)/(1-x^m+x*O(x^n)))); polcoeff(A, n)}
    
  • PARI
    {a(n)=local(A=1+x); for(i=1, n, A=sum(m=0, n, x^m*prod(k=1, m, (1+x^k*A)/(1-x^k+x*O(x^n))))); polcoeff(A, n)}
    for(n=0,35,print1(a(n),", "))

Formula

G.f. satisfies: A(x) = Sum_{n>=0} x^n*Product_{k=1..n} (1 + x^k*A(x))/(1-x^k) due to the q-binomial theorem.
a(n) ~ c * d^n / n^(3/2), where d = 2.6481816651621274063587047915... and c = 7.257947883786923940523402074... - Vaclav Kotesovec, Jun 10 2025
Showing 1-2 of 2 results.