The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A218307 E.g.f. A(x) satisfies A( x/(exp(4*x)*cosh(4*x)) ) = exp(x)*cosh(x). 10
1, 1, 10, 244, 9288, 483216, 31949216, 2564959552, 242374510720, 26355555496192, 3241906046249472, 445085008158569472, 67469834196870809600, 11192986206960277688320, 2017105871358529382883328, 392394481517424330142203904, 81955683182673295403291541504 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
More generally, if A( x/(exp(t*x)*cosh(t*x)) ) = exp(m*x)*cosh(m*x),
then A(x) = Sum_{n>=0} m*(n*t+m)^(n-1) * cosh((n*t+m)*x) * x^n/n!.
LINKS
FORMULA
E.g.f.: A(x) = Sum_{n>=0} (4*n+1)^(n-1) * cosh((4*n+1)*x) * x^n/n!.
From Seiichi Manyama, Apr 23 2024: (Start)
E.g.f.: A(x) = 1/2 + 1/2 * exp( x - 1/4 * LambertW(-4*x * exp(4*x)) ).
a(n) = 1/2 * Sum_{k=0..n} (4*k+1)^(n-1) * binomial(n,k) for n > 0.
G.f.: 1/2 + 1/2 * Sum_{k>=0} (4*k+1)^(k-1) * x^k/(1 - (4*k+1)*x)^(k+1). (End)
EXAMPLE
E.g.f.: A(x) = 1 + x + 10*x^2/2! + 244*x^3/3! + 9288*x^4/4! + 483216*x^5/5! +...
where
A(x) = cosh(x) + 5^0*cosh(5*x)*x + 9^1*cosh(9*x)*x^2/2! + 13^2*cosh(13*x)*x^3/3! + 17^3*cosh(17*x)*x^4/4! + 21^4*cosh(21*x)*x^5/5! +...
PROG
(PARI) {a(n)=local(Egf=1, X=x+x*O(x^n), R=serreverse(x/(exp(4*X)*cosh(4*X)))); Egf=exp(R)*cosh(R); n!*polcoeff(Egf, n)}
for(n=0, 25, print1(a(n), ", "))
(PARI) /* Formula derived from a LambertW identity: */
{a(n)=local(Egf=1, X=x+x*O(x^n)); Egf=sum(k=0, n, (4*k+1)^(k-1)*cosh((4*k+1)*X)*x^k/k!); n!*polcoeff(Egf, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A331611 A122836 A116878 * A249564 A034222 A197437
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 25 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 19 14:45 EDT 2024. Contains 372698 sequences. (Running on oeis4.)