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!)
A190863 E.g.f. exp(x*sqrt(1+x^2)). 1
1, 1, 1, 4, 13, 16, 61, 736, 1849, -12032, 15481, 1386496, 737221, -139053056, 8889973, 22783492096, 577232881, -4931048505344, 9090479089, 1391155770032128, 747609240061, -492982133885763584, 14533568173741, 214285634326006595584 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n)=n!*sum(k=1..n, (binomial(k/2,(n-k)/2)*((-1)^(n-k)+1))/k!)/2.
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Exp[x Sqrt[1+x^2]], {x, 0, nn}], x]Range[0, nn]!] (* Harvey P. Dale, Mar 23 2013 *)
PROG
(Maxima)
a(n):=n!*sum((binomial((k)/2, (n-k)/2)*((-1)^(n-k)+1))/k!, k, 1, n)/2;
(PARI) x='x+O('x^66); /* that many terms */
Vec(serlaplace(exp(x*sqrt(1+x^2)))) /* show terms */ /* Joerg Arndt, May 22 2011 */
CROSSREFS
Sequence in context: A367326 A246145 A107462 * A022132 A041559 A339272
KEYWORD
sign
AUTHOR
Vladimir Kruchinin, May 21 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 April 23 05:37 EDT 2024. Contains 371906 sequences. (Running on oeis4.)