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

 


a(n) = 2^(n-1)*binomial(2n-1, n).
25

%I #50 Jan 16 2024 01:39:33

%S 1,6,40,280,2016,14784,109824,823680,6223360,47297536,361181184,

%T 2769055744,21300428800,164317593600,1270722723840,9848101109760,

%U 76467608616960,594748067020800,4632774416793600,36135640450990080,282202144474398720,2206307674981662720,17266755717247795200

%N a(n) = 2^(n-1)*binomial(2n-1, n).

%C Number of rooted unicursal planar maps with n edges (unicursal means that exactly two nodes are of odd valency; there is an Eulerian path).

%H Reinhard Zumkeller, <a href="/A069720/b069720.txt">Table of n, a(n) for n = 1..1000</a>

%H Harlan J. Brothers, <a href="http://www.brotherstechnology.com/docs/Pascal&#39;s_Prism_(supplement).pdf">Pascal's Prism: Supplementary Material</a>.

%H Valery A. Liskovets and Timothy R. S. Walsh, <a href="http://dx.doi.org/10.1016/j.disc.2003.09.015">Enumeration of Eulerian and unicursal planar maps</a>, Discr. Math., 282 (2004), 209-221.

%H Sheng-Liang Yang, Yan-Ni Dong, and Tian-Xiao He, <a href="http://dx.doi.org/10.1016/j.disc.2017.07.006">Some matrix identities on colored Motzkin paths</a>, Discrete Mathematics 340.12 (2017): 3081-3091.

%F a(n) = 2^(n-2)*binomial(2n, n).

%F 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

%F D-finite with recurrence n*a(n) + 4*(1-2n)*a(n-1) = 0. - _R. J. Mathar_, Apr 01 2012

%F E.g.f.: a(n) = n! * [x^n] (exp(4*x)*BesselI(0, 4*x) - 1)/4. - _Peter Luschny_, Aug 25 2012

%F a(n) = A000079(n-1) * A001700(n-1); for n > 1: a(n) = 2*A082143(n-1). - _Reinhard Zumkeller_, Jan 15 2015

%F From _Amiram Eldar_, Jan 16 2024: (Start)

%F Sum_{n>=1} 1/a(n) = 4/7 + 32*arcsin(1/(2*sqrt(2)))/(7*sqrt(7)).

%F Sum_{n>=1} (-1)^(n+1)/a(n) = 4/9 + 16*log(2)/27. (End)

%p 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

%t Table[2^(n-1) Binomial[2n-1,n],{n,20}] (* _Harvey P. Dale_, Jan 20 2013 *)

%o (Haskell)

%o a069720 n = (a000079 $ n - 1) * (a001700 $ n - 1)

%o -- _Reinhard Zumkeller_, Jan 15 2015

%o (PARI) a(n) = binomial(2*n-1,n)<<(n-1) \\ _Charles R Greathouse IV_, Feb 06 2017

%o (Magma) [2^(n-2)*Binomial(2*n, n): n in [1..25]]; // _Vincenzo Librandi_, Apr 14 2018

%Y First superdiagonal of number array A082137.

%Y Cf. A069724, A003584, A069723, A082143, A000079, A001700.

%K easy,nice,nonn

%O 1,2

%A _Valery A. Liskovets_, Apr 07 2002

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 22 17:35 EDT 2024. Contains 376119 sequences. (Running on oeis4.)