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!)
A259239 E.g.f.: exp(x-sqrt(1-x^2)+1). 3
1, 1, 2, 4, 13, 41, 211, 967, 7274, 44578, 449551, 3456641, 43883797, 405589549, 6212792678, 67022223556, 1202604514141, 14825243365517, 304950638503279, 4227716923246963, 98067246206824406, 1509933505953992386, 38990856819985996927, 660048542856323263589, 18778057160849966289433 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ (exp(2) + (-1)^n) * n^(n-1) / exp(n). - Vaclav Kotesovec, Jun 22 2015
a(n) = ((2*n-3)*a(n-1) + (n-1)*(n^2-5*n+5)*a(n-2) + 2*(n-1)*(n-2)*(n-3)*(a(n-4)-a(n-3)))/(n-2) for n >= 4. - Alois P. Heinz, Jan 30 2020
MAPLE
a:= proc(n) option remember; `if`(n<4, [1$2, 2, 4][n+1],
((2*n-3)*a(n-1) +(n-1)*(n^2-5*n+5)*a(n-2)
+2*(n-1)*(n-2)*(n-3)*(a(n-4)-a(n-3)))/(n-2))
end:
seq(a(n), n=0..25); # Alois P. Heinz, Jun 22 2015
MATHEMATICA
CoefficientList[Series[E^(x-Sqrt[1-x^2]+1), {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Jun 22 2015 *)
CROSSREFS
Sequence in context: A118930 A355194 A087214 * A243107 A002771 A284159
KEYWORD
nonn
AUTHOR
Karol A. Penson, Jun 22 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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)