OFFSET
0,4
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..449
FORMULA
E.g.f.: exp(x/(1+x))/sqrt(1-x^2).
a(n) = Sum_{m=0..n} A111595(n, m), n>=0.
Conjecture: a(n) +(n-2)*a(n-1) -(n-1)*(n-2)*a(n-2) -(n-1)*(n-2)^2*a(n-3)=0. - R. J. Mathar, Oct 05 2014
MATHEMATICA
With[{nmax = 50}, CoefficientList[Series[Exp[x/(1 + x)]/Sqrt[1 - x^2], {x, 0, nmax}], x]*Range[0, nmax]!] (* G. C. Greubel, Jun 10 2018 *)
PROG
(Python)
from sympy import hermite, Poly, sqrt
def a(n): return sum(Poly(1/2**n*hermite(n, sqrt(x/2))**2, x).all_coeffs()) # Indranil Ghosh, May 26 2017
(PARI) x='x+O('x^30); Vec(serlaplace(exp(x/(1+x))/sqrt(1-x^2))) \\ G. C. Greubel, Jun 10 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Exp(x/(1+x))/Sqrt(1-x^2))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Jun 10 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Aug 23 2005
STATUS
approved