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!)
A069720 a(n) = 2^(n-1)*binomial(2n-1, n). 25
1, 6, 40, 280, 2016, 14784, 109824, 823680, 6223360, 47297536, 361181184, 2769055744, 21300428800, 164317593600, 1270722723840, 9848101109760, 76467608616960, 594748067020800, 4632774416793600, 36135640450990080, 282202144474398720, 2206307674981662720, 17266755717247795200 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Number of rooted unicursal planar maps with n edges (unicursal means that exactly two nodes are of odd valency; there is an Eulerian path).
LINKS
Valery A. Liskovets and Timothy R. S. Walsh, Enumeration of Eulerian and unicursal planar maps, Discr. Math., 282 (2004), 209-221.
Sheng-Liang Yang, Yan-Ni Dong, and Tian-Xiao He, Some matrix identities on colored Motzkin paths, Discrete Mathematics 340.12 (2017): 3081-3091.
FORMULA
a(n) = 2^(n-2)*binomial(2n, n).
G.f.: (1-sqrt(1-8x))/(4x*sqrt(1-8x)) = 2/(sqrt(1-8x)(1-sqrt(1-8x)))-1/(2x). - Paul Barry, Sep 06 2004
D-finite with recurrence n*a(n) + 4*(1-2n)*a(n-1) = 0. - R. J. Mathar, Apr 01 2012
E.g.f.: a(n) = n! * [x^n] (exp(4*x)*BesselI(0, 4*x) - 1)/4. - Peter Luschny, Aug 25 2012
a(n) = A000079(n-1) * A001700(n-1); for n > 1: a(n) = 2*A082143(n-1). - Reinhard Zumkeller, Jan 15 2015
From Amiram Eldar, Jan 16 2024: (Start)
Sum_{n>=1} 1/a(n) = 4/7 + 32*arcsin(1/(2*sqrt(2)))/(7*sqrt(7)).
Sum_{n>=1} (-1)^(n+1)/a(n) = 4/9 + 16*log(2)/27. (End)
MAPLE
Z:=(1-sqrt(1-2*z))*4^(n-1)/sqrt(1-2*z): Zser:=series(Z, z=0, 32): seq(coeff(Zser, z, n), n=1..20); # Zerinvary Lajos, Jan 01 2007
MATHEMATICA
Table[2^(n-1) Binomial[2n-1, n], {n, 20}] (* Harvey P. Dale, Jan 20 2013 *)
PROG
(Haskell)
a069720 n = (a000079 $ n - 1) * (a001700 $ n - 1)
-- Reinhard Zumkeller, Jan 15 2015
(PARI) a(n) = binomial(2*n-1, n)<<(n-1) \\ Charles R Greathouse IV, Feb 06 2017
(Magma) [2^(n-2)*Binomial(2*n, n): n in [1..25]]; // Vincenzo Librandi, Apr 14 2018
CROSSREFS
First superdiagonal of number array A082137.
Sequence in context: A122471 A178397 A090041 * A005037 A081337 A316912
KEYWORD
easy,nice,nonn
AUTHOR
Valery A. Liskovets, Apr 07 2002
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 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)