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!)
A360304 Expansion of 1/sqrt(1 - 4*1*x/(1 - 4*2*x/(1 - 4*3*x/(1 - 4*4*x/(1 - 4*5*x/(1 - ...)))))), a continued fraction. 0
1, 2, 22, 436, 12326, 449596, 20023548, 1051713576, 63605620998, 4352044825708, 332356758306836, 28024237688823640, 2586049127787383644, 259239588167116230872, 28054383271233786941752, 3259794623403122252542800, 404791956361004000479206342 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: sqrt( Sum_{k>=0} (2*k)!/k! * (2*x)^k ).
a(n) ~ 2^(3*n - 1/2) * n^n / exp(n). - Vaclav Kotesovec, Feb 07 2023
MATHEMATICA
nmax = 20; CoefficientList[Series[Sqrt[Sum[(2*k)!/k!*(2*x)^k, {k, 0, nmax}]], {x, 0, nmax}], x] (* Vaclav Kotesovec, Feb 07 2023 *)
PROG
(PARI) a(n) = my(A=1+x*O(x^n)); for(i=1, n, A=1-4*(n-i+1)*x/A); polcoeff(1/sqrt(A), n);
(PARI) my(N=20, x='x+O('x^N)); Vec(sqrt(sum(k=0, N, (2*k)!/k!*(2*x)^k)))
CROSSREFS
Sequence in context: A163436 A328158 A266522 * A354943 A084949 A276454
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 02 2023
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 28 16:41 EDT 2024. Contains 372091 sequences. (Running on oeis4.)