OFFSET
1,2
REFERENCES
V. A. Liskovets and T. R. Walsh, Enumeration of unrooted maps on the plane, Rapport technique, UQAM, No. 2005-01, Montreal, Canada, 2005.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
V. A. Liskovets and T. R. Walsh, Counting unrooted maps on the plane, Advances in Applied Math., 36, No.4 (2006), 364-387.
FORMULA
2a(n) = 2^(2n-1) - binomial(2n-1, n-1) + binomial(n-1, floor(n/2)).
G.f.: 1/8*(2/q^2 -2 + 1/p - 1/q + 2*sqrt(p^2-2*x)/sqrt(q^2+2*x) - sqrt(2 + 2*p*q)/(p*q)), where p=sqrt(1+4*x) and q=sqrt(1-4*x). - Benedict W. J. Irwin, Aug 13 2016
MATHEMATICA
f[n_] := (2^(2n - 1) - Binomial[2n - 1, n - 1] + Binomial[n - 1, Floor[n/2]])/2; Table[ f[n], {n, 24}] (* Robert G. Wilson v, Mar 24 2005 *)
Rest[CoefficientList[Series[1/8(-2+2/(1-4x)-1/Sqrt[1-4x]+1/Sqrt[1+4x]+2/Sqrt[-1+2/(1+2x)]-Sqrt[1+Sqrt[1-16x^2]]/Sqrt[1/2-8x^2]), {x, 0, 20}], x]] (* Benedict W. J. Irwin, Aug 13 2016 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Valery A. Liskovets, Mar 17 2005
EXTENSIONS
More terms from Robert G. Wilson v, Mar 24 2005
STATUS
approved