A342964 Constant term in the expansion of ( (Sum_{j=0..n} x^(2*j+1)+1/x^(2*j+1)) * (Sum_{j=0..n} y^(2*j+1)+1/y^(2*j+1)) - (Sum_{j=0..n-1} x^(2*j+1)+1/x^(2*j+1)) * (Sum_{j=0..n-1} y^(2*j+1)+1/y^(2*j+1)) )^(2*n).
1, 12, 2100, 1751680, 4190017860, 20874801722544, 177661172742061008, 2295966445175463883680, 41848194615009705993547620, 1022849138778659709119846990032, 32304962696573489860535097887683296
Offset: 0
Keywords
Links
- Wikipedia, Taxicab geometry.
Programs
-
PARI
f(n) = (x^(2*n+2)-1/x^(2*n+2))/(x-1/x); a(n) = sum(j=0, 2*n, (-1)^j*binomial(2*n, j)*polcoef(f(n)^j*f(n-1)^(2*n-j), 0)^2);
Comments