A229451
G.f.: exp( Sum_{n>=1} (3*n)!/n!^3 * x^n/n ).
Original entry on oeis.org
1, 6, 63, 866, 13899, 246366, 4676768, 93322596, 1934035965, 41286407510, 902562584556, 20119266633060, 455832458083577, 10470568749165246, 243361203186769659, 5714294570067499930, 135377464019074334826, 3232534121305720233264, 77726654423445817800164
Offset: 0
G.f.: A(x) = 1 + 6*x + 63*x^2 + 866*x^3 + 13899*x^4 + 246366*x^5 +...,
where
log(A(x)) = 6*x + 90*x^2/2 + 1680*x^3/3 + 34650*x^4/4 + 756756*x^5/5 +...+ A006480(n)*x^n/n + ....
-
CoefficientList[Series[Exp[6*x*HypergeometricPFQ[{1,1,4/3,5/3},{2,2,2},27*x]],{x,0,20}],x] (* Vaclav Kotesovec, Dec 25 2013 *)
-
{a(n)=polcoeff(exp(sum(k=1,n,(3*k)!/k!^3*x^k/k) +x*O(x^n)),n)}
for(n=0,25,print1(a(n),", "))
A229452
G.f.: exp( Sum_{n>=1} (3*n)!/(3!*n!^3) * x^n/n ).
Original entry on oeis.org
1, 1, 8, 101, 1569, 27445, 518407, 10333243, 214320244, 4583132411, 100411556533, 2243625355010, 50955869372055, 1173262656151429, 27332509319090516, 643208905017756216, 15270427859720369204, 365356267775348553277, 8801688936499808334602
Offset: 0
G.f.: A(x) = 1 + x + 8*x^2 + 101*x^3 + 1569*x^4 + 27445*x^5 + ...,
where
log(A(x)) = x + 15*x^2/2 + 280*x^3/3 + 5775*x^4/4 + 126126*x^5/5 + 2858856*x^6/6 + ... + A060542(n)*x^n/n + ....
-
CoefficientList[Series[Exp[Sum[(3*k)!/(3!*k!^3)*x^k/k, {k, 1, 20}]], {x, 0, 20}], x] (* Vaclav Kotesovec, Mar 05 2020 *)
CoefficientList[Series[Exp[x*HypergeometricPFQ[{1, 1, 4/3, 5/3}, {2, 2, 2}, 27*x]], {x, 0, 20}], x] (* Vaclav Kotesovec, Feb 11 2024 *)
-
{a(n)=polcoeff(exp(sum(k=1,n,(3*k)!/(3!*k!^3)*x^k/k) +x*O(x^n)),n)}
for(n=0,25,print1(a(n),", "))
A353195
Coefficients of the open mirror map of P2.
Original entry on oeis.org
2, 5, 32, 286, 3038, 35870, 454880, 6073311, 84302270, 1206291308, 17687468032, 264593385735, 4024945917314, 62101640836955, 969921269646560, 15309505269479942, 243897741785306000, 3917478255634975373, 63381933612745811168, 1032176017566352265886, 16907912684907490828614
Offset: 1
- M. Aganagic, A. Klemm, and C. Vafa, Disk Instantons, Mirror Symmetry and the Duality Web, Z. Naturforsch. A57 (2002) 1-28; arXiv:hep-th/0105045, 2011.
- M. Aganagic and C. Vafa, Mirror Symmetry, D-Branes and Counting Holomorphic Discs, arXiv:hep-th/0012041, 2000.
- M. Carl, M. Pumperla, B. Siebert, A tropical view on Landau-Ginzburg Models
- K. Chan, A formula equating open and closed Gromov-Witten invariants and its applications to mirror symmetry, Pacific J. Math. 254 (2011) 275-293; arXiv:1006.3827 [math.SG], 2010-2012.
- K. Chan, S.-C. Lau, and H.-H. Tseng, Enumerative meaning of mirror maps for toric Calabi-Yau manifolds, Adv. Math. 244 (2013) 605-625; arXiv:1110.4439 [math.SG], 2011-2013.
- M. van Garrel, T. Graber, and H. Ruddat, Local Gromov-Witten invariants are log invariants, Adv. Math. 350, (2019), 860-876; arXiv:1712.05210 [math.AG], 2017-2019.
- T. Graber and E. Zaslow, Open-string Gromov-Witten invariants: calculations and a mirror “theorem”, Orbifolds in mathematics and physics, Contemp. Math. 310, AMS (2002), 107-121; arXiv:hep-th/0109075, 2001.
- T. Graefnitz, H. Ruddat, and E. Zaslow, The proper Landau-Ginzburg potential is the open mirror map; arXiv:2204.12249 [math.AG], 2022.
- M. Gross and B. Siebert, Local mirror symmetry in the tropics, Proc. Int. Congr. Math. Seoul (2014) Vol. II, 723-744; arXiv:1404.3585 [math.AG], 2014
- S.-C. Lau, N. C. Leung, and B. Wu, A relation for Gromov-Witten invariants of local Calabi-Yau threefolds, Math.Res. Lett. 18 (5), (2011), 943-956; arXiv:1006.3828 [math.AG], 2010.
- W. Lerche and P. Mayr, On N = 1 Mirror Symmetry for Open Type II Strings; arXiv:hep-th/0111113, 2001.
- G. Mikhalkin and K. Siegel, Ellipsoidal superpotentials and stationary descendants, arXiv:2307.13252 [math.SG] (2023).
-
def M(n):
z,Q = var('z,Q')
a = [var(f'a{k}') for k in range(n+1)]
b = [0,1] + [0 for k in range(2,n+1)]
F = sum([(-1)^k/k*factorial(3*k)/factorial(k)^3*z^k for k in range(1,n+1)])
zQ = Q+sum([a[k]*Q^k for k in range(2,n+1)])
Qz = (zQ*exp(F(zQ))).taylor(Q,0,n)
for k in range(2,n+1):
b[k] = a[k].substitute(solve(Qz.coefficient(Q^k).substitute([a[i]==b[i] for i in range(k)]) == 0,a[k]))
return exp(1/3*F).substitute(z==sum([b[k]*Q^k for k in range(n+1)])).taylor(Q,0,n)
Showing 1-3 of 3 results.
Comments