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!)
A116637 G.f. satisfies: A(x) = x/series_reversion(x/G(x)) where A(x) + A(-x) = 2*G(x^2) and G(x) is the g.f. of A046646. 2

%I #16 Nov 21 2017 18:14:41

%S 1,2,2,4,6,14,24,60,110,286,546,1456,2856,7752,15504,42636,86526,

%T 240350,493350,1381380,2861430,8064030,16829280,47682960,100134216,

%U 284997384,601661144,1719031840,3645533040,10450528048,22249511328,63967345068

%N G.f. satisfies: A(x) = x/series_reversion(x/G(x)) where A(x) + A(-x) = 2*G(x^2) and G(x) is the g.f. of A046646.

%H G. C. Greubel, <a href="/A116637/b116637.txt">Table of n, a(n) for n = 0..1000</a>

%F a(2*n+1) = 2*(3*n+1)!/((n+1)!*(2*n+1)!) = 2*A006013(n), with a(0)=1 and a(2*n+2) = 2*(3*n+3)!/((n+1)!*(2*n+3)!) = 2*A001764(n+1).

%F G.f. satisfies: A(x) = G(x/A(x)) and A(x*G(x)) = G(x), where G(x) is the g.f. of A046646.

%F G.f. satisfies: A(x) = 1/A(-x) since log(A(x)) = Sum_{n>=0} 2*A006013(n)*(n+1)/(2n+1)*x^(2n+1) is an odd function.

%F G.f.: (1+v)/(1-v) where v=2*sqrt(3)*sin(asin(3*sqrt(3)*x/2)/3)/3. - _Paul Barry_, Jul 07 2007

%F Conjecture: 4*n*(n+1)*(3*n-1)*a(n) -36*n*a(n-1) -3*(3*n-5)*(3*n+2)*(3*n-4)*a(n-2)=0. - _R. J. Mathar_, Jun 22 2016

%e A(x) = 1 + 2*x + 2*x^2 + 4*x^3 + 6*x^4 + 14*x^5 + 24*x^6 + 60*x^7 +...

%e log(A(x)) = 1*2*x + 2*4/3*x^3 + 7*6/5*x^5 + 30*8/7*x^7 + 143*10/9*x^9 +...

%t k := Floor[(n - 1)/2]; Table[If[n == 0, 1, If[Mod[n, 2] == 1, 2*(3*k + 1)!/((k + 1)!*(2*k + 1)!), 2*(3*k + 3)!/((k + 1)!*(2*k + 3)!)]], {n, 0, 50}] (* _G. C. Greubel_, Nov 21 2017 *)

%o (PARI) {a(n)=local(k=(n-1)\2);if(n==0,1,if(n%2==1, 2*(3*k+1)!/((k+1)!*(2*k+1)!), 2*(3*k+3)!/((k+1)!*(2*k+3)!)))}

%o for(n=0,40,print1(a(n),", "))

%o (PARI) {a(n)=if(n<1, n==0, 2*(n+n\2)!/ (n\2+n%2)!/ (n+1-(n%2))!)} /* _Michael Somos_, Feb 22 2006 */

%Y Cf. A046646, A001764, A006013.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Feb 19 2006

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 September 5 00:56 EDT 2024. Contains 375685 sequences. (Running on oeis4.)