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!)
A012091 cos(arcsin(arctan(x)))=1-1/2!*x^2+5/4!*x^4-109/6!*x^6+4521/8!*x^8... 1
1, -1, 5, -109, 4521, -330681, 36468717, -5721101541, 1205289090513, -328897528901361, 112769846051251797, -47472161654530776285, 24068680135210975714425, -14466929567049590650593705 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,3

LINKS

Table of n, a(n) for n=0..13.

FORMULA

a(n) = (2*n)!*sum(k=1..2*n, ((2*k)!*binomial(2*k-2,k-1)*(-1)^(n+k+1)*sum(i=2*k..2*n, (2^(i+1)*stirling1(i,2*k)*binomial(2*n-1,i-1))/i!))/(k*2^(4*k))) with n>0, a(0)=1. [Vladimir Kruchinin, Oct 08 2012]

MATHEMATICA

With[{nn=30}, Take[CoefficientList[Series[Cos[ArcSin[ArcTan[x]]], {x, 0, nn}], x] Range[0, nn]!, {1, -1, 2}]] (* Harvey P. Dale, Feb 07 2015 *)

PROG

(Maxima) a[n]:=if n=0 then 1 else (2*n)!*sum(((2*k)!*binomial(2*k-2, k-1)*(-1)^(n+k+1)*sum((2^(i+1)*stirling1(i, 2*k)*binomial(2*n-1, i-1))/i!, i, 2*k, 2*n))/(k*2^(4*k)), k, 1, 2*n); makelist(a[n], n, 0, 13); [Vladimir Kruchinin, Oct 08 2012]

CROSSREFS

Cf. A012254.

Sequence in context: A012121 A014180 A012122 * A322896 A296743 A358781

Adjacent sequences: A012088 A012089 A012090 * A012092 A012093 A012094

KEYWORD

sign

AUTHOR

Patrick Demichel (patrick.demichel(AT)hp.com)

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 March 25 09:47 EDT 2023. Contains 361520 sequences. (Running on oeis4.)