login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A113181 Number of unrooted two-vertex (or, dually, two-face) regular planar maps of even valency 2n considered up to orientation-preserving homeomorphism. 3
1, 3, 14, 95, 859, 9130, 106039, 1297295, 16428300, 213388961, 2827645453, 38086408002, 520062618300, 7184570776213, 100256059855188, 1411319038583375, 20021022607979629, 285965560309310708, 4109498933510809561, 59380204746202961953, 862266486434574492404 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
M. Bousquet, G. Labelle and P. Leroux, Enumeration of planar two-face maps, Discrete Math., vol. 222 (2000), 1-25.
FORMULA
a(n) = binomial(2n,n)/4 + 1/(4n) Sum_{k|2n} phi(k) binomial((2n/k)-1),floor(n/k))^2 where phi(k) is the Euler function A000010.
EXAMPLE
There exist 3 planar maps with two 4-valent vertices: a map with four parallel edges and two different maps with two parallel edges and one loop in each vertex. Therefore a(2)=3.
MATHEMATICA
a[n_] := Binomial[2n, n]/4 + (1/(4n)) Sum[EulerPhi[k] Binomial[2n/k - 1, Floor[n/k]]^2, {k, Divisors[2n]}];
Array[a, 21] (* Jean-François Alcover, Jul 24 2018 *)
PROG
(PARI) a(n) = binomial(2*n, n)/4 + sumdiv(2*n, k, eulerphi(k)* binomial(2*n/k-1, (n\k))^2)/(4*n); \\ Michel Marcus, Oct 14 2015
CROSSREFS
Sequence in context: A005772 A233083 A053984 * A295105 A295106 A295107
KEYWORD
nonn
AUTHOR
Valery A. Liskovets, Oct 19 2005
EXTENSIONS
More terms from Michel Marcus, Oct 14 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 12:44 EDT 2024. Contains 371913 sequences. (Running on oeis4.)