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!)
A210674 a(0)=1; thereafter a(n) = 3*Sum_{k=1..n} binomial(2n,2k)*a(n-k). 8

%I #37 Jan 26 2017 02:41:07

%S 1,3,57,2703,239277,34041603,7103141697,2043564786903,775293596155317,

%T 375019773885750603,225270492555606688137,164517775480287009524703,

%U 143555042043378357951428157,147502150365016885913874781203,176273363579960990244526939543377,242422256082395157286909073370272103

%N a(0)=1; thereafter a(n) = 3*Sum_{k=1..n} binomial(2n,2k)*a(n-k).

%C Consider the sequence defined by a(0) = 1; thereafter a(n) = c*Sum_{k = 1..n} binomial(2n,2k)*a(n-k). For c = -3, -2, -1, 1, 2, 3, 4 this is A210676, A210657, A028296, A094088, A210672, A210674, A249939.

%C Exp( Sum_{n >= 1} a(n)*x^n/n) is the o.g.f. for A255930. - _Peter Bala_, Mar 13 2015

%C In general, for c > 0 is a(n) ~ sqrt(Pi/(2*c+1)) * 2^(2*n+2) * n^(2*n+1/2) / (exp(2*n) * (log((c + 1 + sqrt(2*c+1)) / c))^(2*n+1)) = 2*(2*n)!/(sqrt(2*c+1)*(arccosh((c+1)/c))^(2*n+1)). - _Vaclav Kotesovec_, Mar 13 2015

%C For c < 0 is a(n) ~ (-1)^n * (2*n)! / (sqrt(-2*c-1) * 2^(2*n) * arccos(sqrt((2*c + 1)/(2*c)))^(2*n+1)). - _Vaclav Kotesovec_, Mar 14 2015

%H G. C. Greubel, <a href="/A210674/b210674.txt">Table of n, a(n) for n = 0..210</a>

%F a(n) ~ sqrt(Pi/7) * 2^(2*n+2) * n^(2*n+1/2) / (exp(2*n) * (log((4 + sqrt(7)) / 3))^(2*n+1)). - _Vaclav Kotesovec_, Mar 13 2015

%F E.g.f.: 1/(4-3*cosh(x)) (even coefficients). - _Vaclav Kotesovec_, Mar 14 2015

%p f:=proc(n,k) option remember; local i;

%p if n=0 then 1

%p else k*add(binomial(2*n,2*i)*f(n-i,k),i=1..floor(n)); fi; end;

%p g:=k->[seq(f(n,k),n=0..40)];

%p g(3);

%t nmax=20; Table[(CoefficientList[Series[1/(4-3*Cosh[x]), {x, 0, 2*nmax}], x] * Range[0, 2*nmax]!)[[2*n+1]], {n,0,nmax}] (* _Vaclav Kotesovec_, Mar 14 2015 *)

%Y Cf. A210676 (c=-3), A210657 (c=-2), A028296 (c=-1), A094088 (c=1), A210672 (c=2), A249939 (c=4).

%Y Cf. A255930.

%K nonn,easy

%O 0,2

%A _N. J. A. Sloane_, Mar 28 2012

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 16 10:08 EDT 2024. Contains 371698 sequences. (Running on oeis4.)