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!)
A119394 a(n) = Sum_{k=0..n} (-1)^(n-k)*(n!/k!)^2*binomial(n-1,k-1). 1
1, 1, -3, 19, -191, 2301, -5579, -2972633, 365848449, -41439009671, 5100344009101, -707810961855909, 111655250271582337, -19997759486622720971, 4047974925567723953349, -920668079777059041167249, 233796999474238422487503361, -65865180249832257997559536143 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
Sum_{>=0} a(n)*x^n/n!^2 = BesselI(0,2*sqrt(x/(1+x))).
Recurrence: a(n) = -(3*n^2 - 5*n + 1)*a(n-1) - (n-2)*(n-1)^2*(3*n-4)*a(n-2) - (n-3)*(n-2)^3*(n-1)^2*a(n-3). - Vaclav Kotesovec, Mar 02 2014
MAPLE
A119394 := proc(n) local k ; add((-1)^(n-k)*(n!/k!)^2*binomial(n-1, k-1), k=0..n) ; end: seq(A119394(n), n=0..20) ; # R. J. Mathar, Jan 21 2008
MATHEMATICA
Table[Sum[(-1)^(n-k)*(n!/k!)^2*Binomial[n-1, k-1], {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Mar 02 2014 *)
CROSSREFS
Sequence in context: A141623 A229234 A090354 * A101481 A155805 A218261
KEYWORD
easy,sign
AUTHOR
Vladeta Jovovic, Jul 25 2006
EXTENSIONS
More terms from R. J. Mathar, Jan 21 2008
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 16 09:52 EDT 2024. Contains 371698 sequences. (Running on oeis4.)