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!)
A331817 a(n) = (n!)^2 * Sum_{k=0..n} (2*k)! / (2^k * (k!)^3 * (n - k)!). 2
1, 2, 9, 66, 681, 9090, 148905, 2889810, 64805265, 1648535490, 46896669225, 1475099460450, 50831084252025, 1904311245686850, 77061447551313225, 3349828945512299250, 155672917524626126625, 7701743926471878533250, 404153655359180645543625 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: 1 / sqrt(1 - 4*x + 3*x^2).
a(n) = Sum_{k=0..n} binomial(n,k)^2 * (2*k - 1)!! * (n - k)!.
a(n) = n! * 2F1(1/2, -n; 1; -2).
a(n) ~ 3^(n + 1/2) * n^n / exp(n). - Vaclav Kotesovec, Jan 28 2020
D-finite with recurrence a(n + 2) = 2*(3 + 2*n)*a(n + 1) - 3*(n + 1)^2*a(n). - Robert Israel, Feb 17 2020
MAPLE
f:= gfun:-rectoproc({a(n + 2) = 2*(3 + 2*n)*a(n + 1) - 3*(n + 1)^2*a(n), a(0)=1, a(1)=2}, a(n), remember):
map(f, [$0..30]); # Robert Israel, Feb 17 2020
MATHEMATICA
Table[n!^2 Sum[(2 k)!/(2^k k!^3 (n - k)!), {k, 0, n}], {n, 0, 18}]
nmax = 18; CoefficientList[Series[1/Sqrt[1 - 4 x + 3 x^2], {x, 0, nmax}], x] Range[0, nmax]!
Table[n! Hypergeometric2F1[1/2, -n, 1, -2], {n, 0, 18}]
PROG
(PARI) seq(n) = {Vec(serlaplace(1/(sqrt(1 - 4*x + 3*x^2 + O(x*x^n)))))} \\ Andrew Howroyd, Jan 27 2020
(Magma) [(Factorial(n))^2*&+[Factorial(2*k)/(2^k*(Factorial(k))^3*Factorial(n-k)):k in [0..n]]:n in [0..18]]; // Marius A. Burtea, Jan 27 2020
CROSSREFS
Sequence in context: A214930 A089471 A196193 * A118804 A365995 A020555
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 27 2020
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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)