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!)
A033876 Expansion of 1/(2*x) * (1/(1-4*x)^(3/2)-1). 12

%I #58 Mar 04 2023 05:08:41

%S 3,15,70,315,1386,6006,25740,109395,461890,1939938,8112468,33801950,

%T 140408100,581690700,2404321560,9917826435,40838108850,167890003050,

%U 689232644100,2825853840810,11572544300460,47342226683700,193485622098600,790066290235950,3223470464162676

%N Expansion of 1/(2*x) * (1/(1-4*x)^(3/2)-1).

%C a(n) is the trace of the zigzag matrix Z(n+1) (see A088961). - _Paul Boddington_, Nov 03 2003

%C The number of edges in the odd graph O_k (for k >= 2) can be computed as 0.5*(2k-1)*C(2k-2,k-1). This sequence gives the number of edges in O_k for integer values of k from k=2. - _K.V.Iyer_, Mar 04 2009

%C Apparently the number of peaks in all symmetric Dyck paths with semilength 2n+2. - _David Scambler_, Apr 29 2013

%C For n > 0, also the number of maximal and maximum cliques in the (n+2)-odd graph. - _Eric W. Weisstein_, Nov 30 2017

%H Reinhard Zumkeller, <a href="/A033876/b033876.txt">Table of n, a(n) for n = 0..250</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/MaximalClique.html">Maximal Clique</a>.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/MaximumClique.html">Maximum Clique</a>.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/OddGraph.html">Odd Graph</a>.

%F a(n) = (2*n+3)*binomial(2*n+1, n). - _Paul Boddington_, Nov 03 2003

%F Equals n*A000984/4, n >= 2. - _Zerinvary Lajos_, Jan 04 2007

%F For n >= 1, 1/a(n-1) = Sum_{k>=0} binomial(2*k,k)/(4^(n+k)*(n+k+1)) = int(4*t^n/sqrt(1-4*t), t=0..1/4). - _Groux Roland_, Jan 17 2011

%F G.f.: - 1/(2*x) + G(0)/(4*x), where G(k)= 1 + 1/(1 - 2*x*(2*k+3)/(2*x*(2*k+3) + (k+1)/G(k+1) )); (continued fraction). - _Sergei N. Gladkovskii_, Jul 18 2013

%F a(n) = 2^(2*n+1)*binomial(n+3/2, 1/2). - _Peter Luschny_, May 06 2014

%F 0 = a(n)*(16*a(n+1) - 2*a(n+2)) + a(n+1)*(-6*a(n+1) + a(n+2)) for all n in Z. - _Michael Somos_, Sep 17 2014

%F a(n-2) = n*binomial(2*n, n)/4 for n > 1. - _Eric W. Weisstein_, Nov 30 2017

%F G.f.: ((1 - 4*x)^(-3/2) - 1)/2 (by definition). - _Eric W. Weisstein_, Nov 30 2017

%F D-finite with recurrence: (n+1)*a(n) +2*(-2*n-3)*a(n-1)=0. - _R. J. Mathar_, Jan 28 2020

%F G.f.: (1F0(3/2;;4*x)-1)/(2*x). - _R. J. Mathar_, Jan 28 2020

%F From _Amiram Eldar_, Mar 04 2023: (Start)

%F Sum_{n>=0} 1/a(n) = 4*Pi/(3*sqrt(3)) - 2.

%F Sum_{n>=0} (-1)^n/a(n) = 2 - 8*log(phi)/sqrt(5), where phi is the golden ratio (A001622). (End)

%e G.f. = 3 + 15*x + 70*x^2 + 315*x^3 + 1386*x^4 + 6006*x^5 + 25740*x^6 + ...

%p [seq((n+2)*binomial(2*(n+2),n+2)/4, n=0..22)]; # _Zerinvary Lajos_, Jan 04 2007

%t Table[nn = 2 n + 1; (2 n + 1)! Coefficient[Series[Exp[x] (x^n/n!)^2/2, {x, 0, nn}], x^(2 n + 1)], {n, 30}] (* _Geoffrey Critzer_, Apr 19 2017 *)

%t Table[n Binomial[2 n, n]/4, {n, 2, 20}] (* _Eric W. Weisstein_, Nov 30 2017 *)

%t Table[(4^n Gamma[n + 3/2])/(Sqrt[Pi] Gamma[n + 1]), {n, 20}] (* _Eric W. Weisstein_, Nov 30 2017 *)

%t CoefficientList[Series[((1 - 4 x)^(-3/2) - 1)/(2 x), {x, 0, 20}], x] (* _Eric W. Weisstein_, Nov 30 2017 *)

%o (PARI) x='x+O('x^66); Vec( 1/(2*x) * (1/(1-4*x)^(3/2)-1) ) \\ _Joerg Arndt_, May 01 2013

%o (Haskell)

%o a033876 n = sum $ zipWith (!!) zss [0..n] where

%o zss = take (n+1) $ g (take (n+1) (1 : [0,0..])) where

%o g us = (take (n+1) $ g' us) : g (0 : init us)

%o g' vs = last $ take (2 * n + 3) $

%o map snd $ iterate h (0, vs ++ reverse vs)

%o h (p,ws) = (1 - p, drop p $ zipWith (+) ([0] ++ ws) (ws ++ [0]))

%o -- _Reinhard Zumkeller_, Oct 25 2013

%o (Magma) [(2*n+3)*Binomial(2*n+1, n) : n in [0..40]]; // _Wesley Ivan Hurt_, Nov 30 2017

%Y Cf. A000984, A001622, A001803, A002457, A088961.

%K nonn,easy

%O 0,1

%A _N. J. A. Sloane_, _Jeffrey Shallit_

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 May 10 01:03 EDT 2024. Contains 372354 sequences. (Running on oeis4.)