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!)
A119884 Expansion of e.g.f. sech(x)/(1-x). 1
1, 1, 1, 3, 17, 85, 449, 3143, 26529, 238761, 2337089, 25707979, 311198513, 4045580669, 56438768385, 846581525775, 13564695924545, 230599830717265, 4148392073235329, 78819449391471251, 1576759359017662545 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Transform of n! under the matrix A119879.
LINKS
FORMULA
a(n) = Sum_{k=0..n} A119879(n,k) * k!.
E.g.f.: 1/U(0) where U(k) = 1 - x/(1 - x/(x - (2*k+1)*(2*k+2)/U(k+1)); (continued fraction, 3-step). - Sergei N. Gladkovskii, Oct 17 2012
a(n) ~ n! * 2*exp(1)/(exp(2)+1). - Vaclav Kotesovec, Sep 25 2013
a(n) = n! * Sum_{j=0..n} A122045(j)/j!. - G. C. Greubel, Jun 07 2023
MAPLE
restart: G(x):= sech(x)/(1-x): f[0]:=G(x): for n from 1 to 21 do f[n]:=diff(f[n-1], x) od: x:=0: seq(f[n], n=0..20); # Zerinvary Lajos, Apr 03 2009
MATHEMATICA
CoefficientList[Series[1/((1-x)*(E^x/2+E^(-x)/2)), {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Sep 25 2013 *)
Table[n!*Sum[EulerE[j]/j!, {j, 0, n}], {n, 0, 40}] (* G. C. Greubel, Jun 07 2023 *)
PROG
(Magma) R<x>:=PowerSeriesRing(Rationals(), 40); Coefficients(R!(Laplace( 1/((1-x)*Cosh(x)) ))); // G. C. Greubel, Jun 07 2023
(SageMath)
def A119884(n): return factorial(n)*sum(euler_number(j)/factorial(j) for j in range(n+1))
[A119884(n) for n in range(41)] # G. C. Greubel, Jun 07 2023
CROSSREFS
Sequence in context: A350456 A037787 A037668 * A143549 A037794 A203851
KEYWORD
easy,nonn
AUTHOR
Paul Barry, May 26 2006
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 April 18 15:48 EDT 2024. Contains 371780 sequences. (Running on oeis4.)