login

Revision History for A006228

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Expansion of exp(arcsin(x)).
(history; published version)
#44 by Alois P. Heinz at Fri Aug 17 13:41:40 EDT 2018
STATUS

editing

approved

#43 by Alois P. Heinz at Fri Aug 17 13:41:38 EDT 2018
DATA

1, 1, 1, 2, 5, 20, 85, 520, 3145, 26000, 204425, 2132000, 20646925, 260104000, 2993804125, 44217680000, 589779412625, 9993195680000, 151573309044625, 2898026747200000, 49261325439503125, 1049085682486400000, 19753791501240753125, 463695871658988800000

MAPLE

a:= n-> n!*coeff(series(exp(arcsin(x)), x, n+1), x, n):

seq(a(n), n=0..25); # Alois P. Heinz, Aug 17 2018

STATUS

proposed

editing

#42 by Jon E. Schoenfield at Fri Aug 17 13:37:12 EDT 2018
STATUS

editing

proposed

#41 by Jon E. Schoenfield at Fri Aug 17 13:37:09 EDT 2018
LINKS

T. D. Noe, <a href="/A006228/b006228.txt">Table of n, a(n) for n = 0..100</a>

FORMULA

i even: a_i = Prod_Product_{j=1..i/2-1} 1 + 4j^2, i odd: a_i = Prod_Product_{j=1..(i-1)/2} 2 + 4j(j-1). - Cris Moore (moore(AT)santafe.edu), Jan 31 2001

a(0)=1, a(1)=1, a(n) = (1+(n-2)^2)*a(n-2) for n >= 2. Jaume Oliver Lafont, Oct 24 2009

CROSSREFS

Bisections are expansions of sin(asinharcsinh(x)) and cos(asinharcsinh(x)).

STATUS

approved

editing

#40 by Bruno Berselli at Thu Oct 05 11:34:27 EDT 2017
STATUS

proposed

approved

#39 by Michel Marcus at Thu Oct 05 11:33:27 EDT 2017
STATUS

editing

proposed

#38 by Michel Marcus at Thu Oct 05 11:33:14 EDT 2017
LINKS

Kruchinin Vladimir Victorovich, <a href="http://arxiv.org/abs/1009.2565">Composition of ordinary generating functions</a>, arXiv:1009.2565 [math.CO], 2010.

FORMULA

i even: a_i = prod_Prod_{j=1}^{..i/2-1} 1 + 4j^2, i odd: a_i = prod_Prod_{j=1}^{..(i-1)/2} 2 + 4j(j-1). - Cris Moore (moore(AT)santafe.edu), Jan 31 2001

a(0)=1, a(1)=1, a(n) = (1+(n-2)^2)*a(n-2) for n>=2. Jaume Oliver Lafont, Oct 24 2009

PROG

(Maxima) a(n):=(n-1)!*sum((if n=m then 1 else if oddp(n-m) then 0 else sum((-1)^k*(sum(binomial(k, j)*2^(1-j)*sum((-1)^((n-m)/2-i)*binomial(j, i)*(j-2*i)^(n-m+j)/(n-m+j)!, i, 0, floor(j/2))*(-1)^(k-j), j, 1, k))*binomial(k+n-1, n-1), k, 1, n-m))/(m-1)!, m, 1, n); [_/* _Vladimir Kruchinin_, Sep 12 2010] */

#37 by Michel Marcus at Thu Oct 05 11:31:17 EDT 2017
REFERENCES

H. S. Uhler, On the numerical value of i^i, Amer. Math. Monthly, 28 (1921), 114-116.

LINKS

H. S. Uhler, <a href="http://www.jstor.org/stable/2972387">On the numerical value of i^i</a>, Amer. Math. Monthly, 28 (1921), 114-116.

STATUS

approved

editing

#36 by Vaclav Kotesovec at Thu Nov 06 15:01:50 EST 2014
STATUS

editing

approved

#35 by Vaclav Kotesovec at Thu Nov 06 15:01:36 EST 2014
NAME

Expansion of exp(arcsin (x)).