login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A370445 Expansion of g.f. A(q) satisfying -5 = Product_{n>=0} (1 - 6*q^n*A(q)). 5
1, 5, 60, 840, 13200, 222060, 3914880, 71382000, 1335069060, 25471344000, 493782003960, 9698680513380, 192596799930360, 3860313616039080, 77994531433117500, 1586781765309289080, 32479537197876474480, 668397905439059302860, 13820909295920888641200, 287010766542642877455600 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. A(q) = Sum_{n>=0} a(n)*q^n satisfies the following formulas.
(1) -5 = Product_{n>=0} (1 - 6*q^n*A(q)).
(2) -5 = Sum_{n>=0} (-6)^n * q^(n*(n-1)/2) * A(q)^n / Product_{k=1..n} (1 - q^k).
(3) A(q) = lim_{n->oo} R_{n}(q) / R_{n+1}(q) where R_{n}(q) = faq(n,q) * [x^n] 6/(1 + 5*e_q(6*x,q)), e_q(x,q) is the q-exponential of x and faq(n,q) is the q-factorial of n.
a(n) ~ c * d^n / n^(3/2), where d = 22.4513560224097075964072006016077322187366268210808011681398076264064... and c = 0.53352515179176712675216292204161595268714373520357919375218426836012... - Vaclav Kotesovec, Feb 18 2024
EXAMPLE
G.f.: A(q) = 1 + 5*q + 60*q^2 + 840*q^3 + 13200*q^4 + 222060*q^5 + 3914880*q^6 + 71382000*q^7 + 1335069060*q^8 + 25471344000*q^9 + 493782003960*q^10 + ...
where A(q) satisfies the infinite product
-5 = (1 - 6*A(q)) * (1 - 6*q*A(q)) * (1 - 6*q^2*A(q)) * (1 - 6*q^3*A(q)) * (1 - 6*q^4*A(q)) * (1 - 6*q^5*A(q)) * ...
MATHEMATICA
(* Calculation of constants {d, c}: *) With[{m = 6}, {1/r, -s*Log[r] * Sqrt[r*Derivative[0, 1][QPochhammer][m*s, r] / (2*Pi*(m - 1)*QPolyGamma[1, Log[m*s]/Log[r], r])]} /. FindRoot[{m + QPochhammer[m*s, r] == 1, Log[1 - r] + QPolyGamma[0, Log[m*s]/Log[r], r] == 0}, {r, 1/m^2}, {s, 2}, WorkingPrecision -> 70]] (* Vaclav Kotesovec, Feb 18 2024 *)
PROG
(PARI) /* A(q) satisfies -5 = Product_{n>=0} (1 - 6*q^n*A(q)) */
{a(n) = my(A=[1]); for(i=1, n, A = concat(A, 0);
A[#A] = polcoeff( 5 + prod(k=0, #A, 1 - 6*x^k*Ser(A)) /6, #A-1, x) ); H=A; A[n+1]}
for(n=0, 30, print1(a(n), ", "))
(PARI) /* limit_{n->oo} R_{n}(q) / R_{n+1}(q) */
{faq(n, q) = prod(j=1, n, (q^j-1)/(q-1))} \\ q-factorial of n
{R(n) = faq(n, q) * polcoeff( 6/(1 + 5*sum(m=0, n, (6*x)^m/faq(m, q) + x*O(x^(n+2)))), n, x)}
{a(n) = polcoeff(R(n+1)/R(n+2) + q*O(q^n), n, q)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A138134 A283779 A353875 * A093885 A192948 A234528
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 18 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 26 17:53 EDT 2024. Contains 374636 sequences. (Running on oeis4.)