OFFSET
0,2
LINKS
Eric Weisstein's World of Mathematics, Modified Struve Function.
Eric Weisstein's World of Mathematics, Struve function.
Wikipedia, Struve function.
FORMULA
a(n) = CatalanNumber(n) * (2*n)! * (2*n + 1)^2.
a(n) ~ (4*n/e)^(2*n)*(8*n - 2/3).
From Amiram Eldar, Mar 02 2023: (Start)
Sum_{n>=0} 1/a(n) = 1/2 + StruveL(0, 1/2)*Pi/2 + StruveL(1, 1/2)*Pi/4, where StruveL is the modified Struve function.
Sum_{n>=0} (-1)^n/a(n) = 1/2 + StruveH(0, 1/2)*Pi/2 - StruveH(1, 1/2)*Pi/4, where StruveH is the Struve function. (End)
MAPLE
a := n -> ((2*n + 1)! / n!)^2 / (n + 1):
seq(a(n), n = 0..13);
MATHEMATICA
a[n_] := ((2*n + 1)!/n!)^2/(n + 1); Array[a, 14, 0] (* Amiram Eldar, Mar 02 2023 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, Feb 16 2023
STATUS
approved