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!)
A317618 Expansion of e.g.f. sqrt((1 - x)/(1 - 3*x)). 2
1, 1, 5, 39, 417, 5685, 94365, 1847475, 41686785, 1065288105, 30411314325, 959236098975, 33129890726625, 1243507150410525, 50401090111697325, 2193907232242600875, 102075654396429338625, 5055304328553234380625, 265522264682686831945125, 14742355948224269570580375 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Lah transform of A001147.
LINKS
N. J. A. Sloane, Transforms
FORMULA
a(n) = Sum_{k=0..n} binomial(n-1,k-1)*(2*k-1)!!*n!/k!.
a(n) ~ 2 * 3^(n - 1/2) * n^n / exp(n). - Vaclav Kotesovec, Mar 26 2019
D-finite with recurrence: (3*n^2 + 3*n)*a(n) + (-5 - 4*n)*a(n + 1) + a(n + 2)=0. - Robert Israel, Mar 26 2019
MAPLE
a:=series(sqrt((1 - x)/(1 - 3*x)), x=0, 20): seq(n!*coeff(a, x, n), n=0..19); # Paolo P. Lava, Mar 26 2019
MATHEMATICA
nmax = 19; CoefficientList[Series[Sqrt[(1 - x)/(1 - 3*x)], {x, 0, nmax}], x] Range[0, nmax]!
Table[Sum[Binomial[n - 1, k - 1] (2 k - 1)!! n!/k!, {k, 0, n}], {n, 0, 19}]
Join[{1}, Table[n! Hypergeometric2F1[3/2, 1 - n, 2, -2], {n, 19}]]
PROG
(PARI) my(x='x + O('x^25)); Vec(serlaplace(sqrt((1 - x)/(1 - 3*x)))) \\ Michel Marcus, Mar 26 2019
CROSSREFS
Sequence in context: A070767 A124549 A308939 * A024216 A127189 A121354
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 01 2018
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.)