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!)
A218798 E.g.f.: Sum_{n>=0} a(n) * (cos(n*x)-sin(n*x)) * x^n/n! = 1 + x. 4
1, 1, 2, 15, 224, 5665, 215136, 11466903, 815542272, 74626924833, 8539305740800, 1194616544819423, 200588161750990848, 39810821495648979009, 9219256372209251966976, 2463653490073311266825895, 752468103154551980520636416, 260483894045203867466646001345 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare to the LambertW identity:
1 + Sum_{n>=1} n^(n-1) * exp(-n*x) * x^n/n! = 1 + x.
Limit A219504(n)/A218798(n) = 2.30118311046652539351786883792086321360311554689487793288...
LINKS
FORMULA
a(n) = Sum_{k=1..n-1} (-1)^[(n-k-1)/2] * binomial(n,k) * k^(n-k) * a(k) for n>1 with a(0)=a(1)=1.
EXAMPLE
E.g.f.: A(x) = 1 + x + 2*x^2/2! + 15*x^3/3! + 224*x^4/4! + 5665*x^5/5! +...
By definition, the coefficients a(n) satisfy:
1+x = 1 + 1*(cos(x)-sin(x))*x + 2*(cos(2*x)-sin(2*x))*x^2/2! + 15*(cos(3*x)-sin(3*x))*x^3/3! + 224*(cos(4*x)-sin(4*x))*x^4/4! + 5665*(cos(5*x)-sin(5*x))*x^5/5! +...+ a(n)*(cos(n*x)-sin(n*x))*x^n/n! +...
PROG
(PARI) a(n)=local(A=[1, 1], N); for(i=1, n, A=concat(A, 0); N=#A; A[N]=(N-1)!*(-Vec(sum(m=0, N-1, A[m+1]*x^m/m!*(cos(m*x+x*O(x^N))-sin(m*x+x*O(x^N)))))[N])); A[n+1]
for(n=0, 25, print1(a(n), ", "))
(PARI) a(n)=if(n<2, 1, sum(k=1, n-1, (-1)^((n-k-1)\2)*a(k)*binomial(n, k)*k^(n-k)))
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Cf. A219504.
Sequence in context: A099085 A078365 A207037 * A176337 A145168 A184357
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 21 2012
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 May 6 18:59 EDT 2024. Contains 372297 sequences. (Running on oeis4.)