login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A346543
a(n) = [x^n] Product_{k=1..2*n} (x + (2*k-1)^2).
1
1, 10, 1974, 1234948, 1601489318, 3541644282540, 11934462103156540, 56947950742822581960, 365458809637016986262790, 3035813466162156094097686300, 31694033885101849517370941522644, 406222401519003083851664224927890360, 6271146756206887832796744632163811733084
OFFSET
0,2
FORMULA
a(n) = A008956(2*n,n).
a(n) = (4*n+1)! * [x^(4*n+1)] (1/(2*n+1)!) * (arcsin(x))^(2*n+1).
a(n) ~ c * d^n * n!^2 / n^(3/2), where d = 121.8904568356133798202328777176879971969471503678428704459083316116687149... and c = 0.1081647814943965981694666415038643176470488612855594762896553127... - Vaclav Kotesovec, Oct 16 2021
EXAMPLE
(1/3!) * (arcsin(x))^3 = x^3/3! + 10 * x^5/5! + ... . So a(1) =10.
(1/5!) * (arcsin(x))^5 = x^5/5! + 35 * x^7/7! + 1974 * x^9/9! + ... . So a(2) = 1974.
MATHEMATICA
Table[SeriesCoefficient[Product[(x + (2*k-1)^2), {k, 1, 2*n}], {x, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Oct 16 2021 *)
PROG
(PARI) a(n) = polcoef(prod(k=1, 2*n, x+(2*k-1)^2), n);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 27 2021
STATUS
approved