OFFSET
0,2
COMMENTS
The defining differential equation determines the period function T(u) along a square-symmetric Hamiltonian family of algebraic plane curves, u=2*H=x^2+y^2-(1/2)*(x^4+y^4). The separatrix with u=1/2 is a product of two congruent ellipses. Transformation u->1-u leaves T(u) invariant.
LINKS
Bradley Klee, Contour and Period Graphs.
FORMULA
Define t(u,z) = 1/sqrt(1-2*u*(cos(z)^4+sin(z)^4)), then certify that:
3*(2*u-1)*t + d/du(4*u*(2*u-1)*(u-1)*dt/du) = d/dz((1/4)*sin(4*z)*t^3).
G.f.: G(x) = T(48*x/3), T(u) = 1/(2*Pi)*Integral_{z=0..2*Pi} t(u)*dz.
n^2*a(n) - 12*(2*n-1)^2*a(n-1) + 128*(2*n-3)*(2*n-1)*a(n-2) = 0.
0 = +a(n)*(+a(n+1)*(+134217728*a(n+2) -25165824*a(n+3) +819200*a(n+4)) +a(n+2)*(-6291456*a(n+2) +1998848*a(n+3) -78336*a(n+4)) +a(n+3)*(-29184*a(n+3) +1472*a(n+4))) +a(n+1)*(+a(n+1)*(-6291456*a(n+2) +1179648*a(n+3) -38400*a(n+4)) +a(n+2)*(+327680*a(n+2) -110592*a(n+3) +4448*a(n+4)) +a(n+3)*(+1728*a(n+3) -90*a(n+4))) +a(n+2)*(+a(n+2)*(-1536*a(n+2) +800*a(n+3) -36*a(n+4)) +a(n+3)*(-18*a(n+3) +a(n+4))) for all n in Z. - Michael Somos, Aug 27 2018
EXAMPLE
Singular Points of u=x^2+y^2-(1/2)*(x^4+y^4).
u (x,y) type
=============================================
0 (0,0) circular
1/2 (0,+/-1) (+/-1,0) hyperbolic
1 +/-(1,1) +/-(1,-1) circular
G.f. = 1 + 12*x + 228*x^2 + 5040*x^3 + 121380*x^4 + 3093552*x^5 + 82047504*x^6 + ... - Michael Somos, Aug 27 2018
MATHEMATICA
RecurrenceTable[{n^2*a[n]-12*(2*n-1)^2*a[n-1] + 128*(2*n-3)*(2*n-1)*a[n-2] == 0, a[0] == 1, a[1] == 12}, a, {n, 0, 1000}]
PeriodIntegral[n_]:= CoefficientList[Series[1/Sqrt[1-2*x*((z+y)^4+(z-y)^4)], {x, 0, n}], {x, y, z}][[#+1, 2*#+1, 2*#+1]]&/@Range[0, n];
PeriodIntegral[10]
HadamardProduct[n_]:=Times@@Map[CoefficientList[Normal[Series[#, {x, 0, n}]], x, n+1]&, {1/Sqrt[1-12*x+32*x^2], 1/Sqrt[1-4*x]}];
HadamardProduct[10]
a[ n_] := Binomial[2 n, n] SeriesCoefficient[ (1 - 12 x + 32 x^2)^(-1/2), {x, 0, n}]; (* Michael Somos, Aug 27 2018 *)
PROG
(PARI) {a(n) = if( n<0, 0, binomial(2*n, n) * polcoeff( (1 - 12*x + 32*x^2 + x * O(x^n))^(-1/2), n))}; /* Michael Somos, Aug 27 2018 */
CROSSREFS
KEYWORD
nonn
AUTHOR
Bradley Klee, Aug 26 2018
STATUS
approved