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!)
A215639 E.g.f. satisfies: A(x) = cos(x*A(x)) + sin(x*A(x)). 1

%I #3 Aug 18 2012 14:05:35

%S 1,1,1,-4,-51,-304,125,34880,557753,3416320,-74779911,-2917151744,

%T -46015368443,115191402496,30429734385973,942941062774784,

%U 9925460231059185,-471696770041053184,-29508689065235461903,-733077456673636089856,4714209123766494329021

%N E.g.f. satisfies: A(x) = cos(x*A(x)) + sin(x*A(x)).

%F E.g.f.: A(x) = (1/x)*Series_Reversion( x/(cos(x) + sin(x)) ).

%F E.g.f. satisfies: A(x/(cos(x) + sin(x))) = cos(x) + sin(x).

%F a(n) = [x^n/n!] (cos(x)+sin(x))^(n+1) / (n+1).

%F a(n) = A215638(n+1)/(n+1) for n>=0.

%e E.g.f.: A(x) = 1 + x + x^2/2! - 4*x^3/3! - 51*x^4/4! - 304*x^5/5! + 125*x^6/6! +...

%e where A(x) = cos(x*A(x)) + sin(x*A(x)).

%e Related expansions:

%e cos(x*A(x)) = 1 - x^2/2! - 6*x^3/3! - 23*x^4/4! + 40*x^5/5! + 2159*x^6/6! + 26656*x^7/7! + 114577*x^8/8! +...

%e sin(x*A(x)) = x + 2*x^2/2! + 2*x^3/3! - 28*x^4/4! - 344*x^5/5! - 2034*x^6/6! + 8224*x^7/7! + 443176*x^8/8! +...

%o (PARI) {a(n)=local(X=x+x^2*O(x^n)); n!*polcoeff(1/x*serreverse(x/(cos(X)+sin(X))), n)}

%o (PARI) {a(n)=local(X=x+x^2*O(x^n)); n!*polcoeff((cos(X)+sin(X))^(n+1)/(n+1), n)}

%o (PARI) {a(n)=local(A=1+x+x^2*O(x^n)); for(i=1,n,A=cos(x*A)+sin(x*A));n!*polcoeff(A, n)}

%o for(n=0, 31, print1(a(n), ", "))

%Y Cf. A215638, A201923.

%K sign

%O 0,4

%A _Paul D. Hanna_, Aug 18 2012

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 May 4 13:45 EDT 2024. Contains 372243 sequences. (Running on oeis4.)