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!)
A106827 Numerators in expansion of (1 - x)^(-1/x) / e. 2
1, 1, 11, 315, 17129, 1510425, 196385475, 35327367075, 8399994587985, 2550903574364145, 963207568455370875, 442613044315692124875, 243195136160954426677305, 157442856285298191126143625, 118607799383105394973766029875, 102867257381973743111023517821875 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
REFERENCES
L. Comtet, Analyse Combinatoire, P. U. F., 1970, tome second, p. 140, #12.
L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 293, Problem 11.
S. R. Finch, Mathematical Constants, Cambridge, 2003, Section 1 . 3 . 1.
LINKS
FORMULA
Sum_{n>=0} a(n)/(2n)!*x^n = (1 - x)^(-1/x) / e.
a(n) = A055505(n)*(2n)! / A055535(n).
a(n) = (-1)^n * Sum_{k=0..n} Stirling1(n+k, k) * !(n-k) * C(2*n, n+k), where !n = A000166(n) is the subfactorial, C(n,k) are binomial coefficients. - Vladimir Reshetnikov, Sep 23 2016
a(n) = (2*n)! * coefficients of Product_{j >= 2} exp(x^(j-1)/j). - G. C. Greubel, Sep 14 2021
EXAMPLE
G.f. = 1 + 1*x/2! + 11*x^2/4! + 315*x^3/6! + 17129*x^4/8! + 503475*x^5/10! + ...
MATHEMATICA
Table[(-1)^n Sum[StirlingS1[n+k, k] Subfactorial[n-k] Binomial[2n, n+k], {k, 0, n}], {n, 0, 20}] (* Vladimir Reshetnikov, Sep 23 2016 *)
With[{m=30}, CoefficientList[Series[(1-x)^(-1/x)/E, {x, 0, m}], x]*(2*Range[0, m])!] (* G. C. Greubel, Sep 14 2021 *)
PROG
(Magma) m:=31; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( (&*[Exp(x^(j-1)/j): j in [2..40]]) )); [Factorial(2*n-2)*b[n]: n in [1..m]]; // G. C. Greubel, Sep 14 2021
(Sage)
def A_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( product(exp(x^(j-1)/j) for j in (2..41)) ).list()
A=A_list(40)
[factorial(2*n)*A[n] for n in (0..31)] # G. C. Greubel, Sep 14 2021
CROSSREFS
Sequence in context: A233241 A266830 A266029 * A276977 A176285 A266484
KEYWORD
nonn,frac
AUTHOR
Philippe Deléham, May 21 2005
EXTENSIONS
a(5) corrected by G. C. Greubel, Sep 14 2021
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 August 28 02:34 EDT 2024. Contains 375477 sequences. (Running on oeis4.)