cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A190863 E.g.f. exp(x*sqrt(1+x^2)).

Original entry on oeis.org

1, 1, 1, 4, 13, 16, 61, 736, 1849, -12032, 15481, 1386496, 737221, -139053056, 8889973, 22783492096, 577232881, -4931048505344, 9090479089, 1391155770032128, 747609240061, -492982133885763584, 14533568173741, 214285634326006595584
Offset: 0

Views

Author

Vladimir Kruchinin, May 21 2011

Keywords

Programs

  • 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 *)
  • 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 */

Formula

a(n)=n!*sum(k=1..n, (binomial(k/2,(n-k)/2)*((-1)^(n-k)+1))/k!)/2.