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!)
A187546 Stirling transform (of the first kind, with signs) of the central Lah numbers (A187535). 8
1, 2, 34, 1096, 51984, 3262488, 254943384, 23853046656, 2600024557248, 323588157732096, 45276442446814656, 7035574740347812800, 1202158966644148296000, 224022356544364922931840, 45215509996613004825121920 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = sum((-1)^(n-k)*s(n,k)*L(k), k=0..n), where s(n,k) are the (signless) Stirling numbers of the first kind and L(n) are the central Lah numbers.
E.g.f.: 1/2 + 1/Pi*K(16*log(1+x)), where K(z) is the elliptic integral of the first kind (defined as in Mathematica).
a(n) ~ n! / (2*Pi*n * (exp(1/16) - 1)^n). - Vaclav Kotesovec, Apr 10 2018
MAPLE
lahc := n -> if n=0 then 1 else binomial(2*n-1, n-1)*(2*n)!/n! fi;
seq(add(combinat[stirling1](n, k)*lahc(k), k=0..n), n=0..20);
MATHEMATICA
lahc[n_] := If[n == 0, 1, Binomial[2n - 1, n - 1](2n)!/n!]
Table[Sum[StirlingS1[n, k]*lahc[k], {k, 0, n}], {n, 0, 20}]
PROG
(Maxima) lahc(n):= if n=0 then 1 else binomial(2*n-1, n-1)*(2*n)!/n!;
makelist(sum(stirling1(n, k)*lahc(k), k, 0, n), n, 0, 12);
CROSSREFS
Sequence in context: A227935 A264669 A367510 * A195005 A215957 A171732
KEYWORD
nonn,easy
AUTHOR
Emanuele Munarini, Mar 11 2011
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 September 17 22:44 EDT 2024. Contains 375991 sequences. (Running on oeis4.)