OFFSET
1,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..150
FORMULA
a(n) = (1/2)*(-1)^(n)*(2*n-3)!!*(n+(4*n^2-1)*Sum_{k=0..n-1} ((-1)^(k+n)/(2*k+1))).
From Peter Bala, Nov 01 2016: (Start)
a(n) = (2*n + 1)!! * Sum_{k = 0..n-1} (-1)^(k-1)/((2*k - 1)*(2*k + 1)*(2*k + 3)).
a(n) ~ Pi * 2^(n-3/2) * ((n+1)/e)^(n+1).
E.g.f.: (4*x*sqrt(1 - 4*x^2) + 2*arcsin(2*x))/(8*(1 - 2*x)^(3/2)).
a(n) = 6*a(n-1) + (2*n - 5)*(2*n - 1)*a(n-2) with a(0) = 0, a(1) = 1.
The sequence b(n) := (2*n + 1)!! = (2*n + 2)!/((n + 1)!*2^(n+1)) satisfies the same recurrence with b(0) = 1 and b(1) = 3. This leads to the continued fraction representation a(n) = b(n)*[ 1/(3 - 3/(6 + 5/(6 + 21/(6 + ... + (2*n - 5)*(2*n - 1)/(6))))) ] for n >= 2.
MATHEMATICA
Table[(1/2)*(-1)^(n)*(2*n - 3)!!*((n) + (4*n^2 - 1)*Sum[(-1)^(k + n)/(2*k + 1), {k, 0, n - 1}]), {n, 1, 50}] (* G. C. Greubel, Jun 17 2016 *)
CROSSREFS
Equals the second column of the ED4 array A167584.
KEYWORD
easy,nonn
AUTHOR
Johannes W. Meijer, Nov 10 2009
STATUS
approved