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!)
A102692 a(n) = number of digraphs (allowing loops) with vertices 1,2,...,n that have a unique Eulerian tour (up to cyclic shift). 1
1, 2, 4, 28, 336, 5808, 132000, 3731040, 126362880, 4993309440, 225677975040, 11487263961600, 650467886745600, 40565803419187200, 2763133948128153600, 204127536266119065600, 16257504491853520896000, 1388699783389209747456000, 126649067639795642253312000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
R. P. Stanley, unpublished work.
LINKS
FORMULA
a(n) = (n-1)! * (b(n-1) + b(n)), where b(n) is a little Schroeder number (A001003).
a(n) ~ 2^(1/4) * (1 + sqrt(2))^(2*n) * n^(n-2) / exp(n). - Vaclav Kotesovec, May 22 2018
EXAMPLE
a(3) = 2!*(3+11) = 28. There are 16 such digraphs which are triangles with a possible loop at each vertex and 12 which consist of two 2-cycles with a common vertex and a possible loop at the other two vertices.
MAPLE
a:= proc(n) option remember; `if`(n<2, n+1,
(n-1)*(6*(2*n^2-4*n+1)*a(n-1)-(n-2)*
(n-3)*(2*n-1)*a(n-2))/((n+1)*(2*n-3)))
end:
seq(a(n), n=0..20); # Alois P. Heinz, May 21 2018
MATHEMATICA
b[n_] := Hypergeometric2F1[-n, n+1, 2, -1]/2;
a[n_] := Switch[n, 0, 1, 1, 2, _, (n-1)! (b[n-1] + b[n])];
a /@ Range[0, 20] (* Jean-François Alcover, Nov 18 2020 *)
CROSSREFS
Cf. A001003.
Sequence in context: A117443 A095858 A062792 * A292184 A248872 A329102
KEYWORD
nonn
AUTHOR
Richard Stanley, Feb 04 2005
EXTENSIONS
a(0)=1 prepended and one typo corrected by Alois P. Heinz, May 21 2018
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)