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!)
A255432 E.g.f. sqrt(1-t^2)*exp(t*(1+arctanh(t))). 0
1, 1, 2, 4, 12, 36, 160, 680, 4368, 24976, 219616, 1599104, 18145600, 160805568, 2245960704, 23437238656, 389201754368, 4669754525952, 89893314615808, 1218303508421632, 26673872401980416, 402798557886395392, 9883555312758398976 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = a(n-1)+sum(k=1..n/2, (n-1)!/(n-2*k)!*(1/(2*k-1))*a(n-2*k)), a(0)=1.
a(n) ~ (n-2)! * (exp(1) + (-1)^n*exp(-1)). - Vaclav Kotesovec, Feb 24 2015
MATHEMATICA
CoefficientList[Series[Sqrt[1-x^2]*E^(x*(1+Log[(1+x)/(1-x)]/2)), {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Feb 24 2015 *)
PROG
(Maxima)
a(n):=if n=0 then 1 else a(n-1)+sum((n-1)!/(n-2*k)!*(1/(2*k-1))*a(n-2*k), k, 1, n/2);
(PARI) default(seriesprecision, 50); Vec(serlaplace(sqrt(1-t^2)*exp(t*(1+atanh(t))) + O(t^50)))
CROSSREFS
Sequence in context: A349282 A276230 A003701 * A275539 A356062 A193049
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, Feb 23 2015
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 19 03:30 EDT 2024. Contains 371782 sequences. (Running on oeis4.)