I collected a bit of Mathematica code and additional details relevant for the paper Growth problems in diagram categories https://arxiv.org/abs/2412.01283 on this page.
An Erratum for the paper Growth problems in diagram categories can be found at the bottom of the page.
If you find any errors in the paper Growth problems in diagram categories please email me:
Same goes for any errors related to this page.
Relevant for the paper is Hayman's method, which on MathSciNet is summarzed by the quote (from Boas, R. P. on MathSciNet):
For the exponential generating function
Note that these are exact calculations, so one can put the results into a paper. Arguable, this is better than doing it by hand
To quote https://www.wolfram.com/language/12/asymptotics:
Asymptotic methods represent a third mode of computing that complements exact symbolic and approximate numeric modes of computing for calculus and algebra. Asymptotic methods are what disciplines turn to when they run into hard problems and are used in a wide variety of areas, including number theory, analysis of algorithms, statistics, theoretical physics and numerical methods. Asymptotic computing allows hard problems to be solved and furthermore is typically more insightful even when other modes of computing succeed. With Version 12, asymptotic computing is fully automated and as easy to use as other high-level solvers.
The corresponding guide is here: https://reference.wolfram.com/language/guide/Asymptotics.html
Note again that these are exact calculations, so one can put the results into a paper. Arguable, this is better than doing it by hand
In this case one simply needs to setup the function:
(*Define the Lambert W function*)W[x_] := Log[x]
(*Define the value of z*)
z[n_, k_] :=
W[2 n/k]/2 -
1/((4 (k/2) n^(1 - 1/2) (W[2 n/k] + 1) W[2 n/k]^(1/2 - 2)) +
2/W[2 n/k] + 1)
(*Define the asymptotic expression for a(n)*)
a[n_, k_] := ((n/z[n, k])^(n + 1/2) Exp[k/2] Exp[2 z[n, k] + 1] Exp[
z[n, k] - n - (k + 2)/2])/
Sqrt[2 (k/2) Exp[2 z[n, k]] (2 z[n, k] + 1) +
Exp[z[n, k]] (z[n, k] + 1)]
Here the Lambert W function is approximated by the logarithm, which is justified by
Asymptotic[(a[n, 1])^(1/n) // Simplify, n -> Infinity]
The code runs for general
A pdf file containing more detailed arguments can be found here: https://github.com/dtubbenhauer/growth-diagram/blob/main/growth_diagram.pdf. In particular, one rather nasty calculation is outsourced into that file, or as a standalone document which can be found here: https://github.com/dtubbenhauer/growth-diagram/blob/main/nasty-qbim.tex.
Empty so far.
