OFFSET
0,3
COMMENTS
LINKS
Jean-François Alcover, Table of n, a(n) for n = 0..100
FORMULA
A000142(x) = A(x)/A(x^2), where A(x) and A000142(x) are the o.g.f.'s associated with A000142 and this sequence here.
Sum_{n>=0} 1/a(n) = 2.519966353393413186683398448854995831308...
a(n) = (A173279^j)(n,0).
a(n) = Sum_{t=0..n, n-t even} t!*a_{(n-t)/2}. - R. J. Mathar, Feb 22 2010
MAPLE
A173280 := proc(n) option remember; local a, l; if n = 0 then 1; else a :=0 ; for l from n to 0 by -2 do a := a+ l!*procname((n-l)/2) : end do ; a ; end if; end proc:
seq(A173280(n), n=0..60) ; # R. J. Mathar, Feb 22 2010
MATHEMATICA
CROSSREFS
KEYWORD
nonn
AUTHOR
Gary W. Adamson, Feb 14 2010
EXTENSIONS
Extended, and invalid comment on convergence to e removed, by R. J. Mathar, Feb 22 2010
Index of B in the convolution formula in the comment corrected by R. J. Mathar, Mar 23 2010
STATUS
approved