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!)
A321938 Denominators of the Maclaurin coefficients of exp(1/x - 1/(exp(x)-1) - 1/2). 3
1, 12, 288, 51840, 2488320, 209018880, 75246796800, 180592312320, 86684309913600, 73557828698112000, 86504006548979712000, 13494625021640835072000, 9716130015581401251840000, 23318712037395363004416000, 559649088897488712105984000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The Maclaurin coefficients arise in a theorem of Slater (1960) on asymptotic expansions of confluent hypergeometric functions, see Sec. 3.1 of the paper by Temme (2013), and Theorem 5 of the preprint by Brent et al. (2018).
The sequence is related to A001164 but differs from the 7th term.
REFERENCES
L. J. Slater, Confluent Hypergeometric Functions, Cambridge University Press, 1960.
LINKS
Richard P. Brent, M. L. Glasser, Anthony J. Guttmann, A Conjectured Integer Sequence Arising From the Exponential Integral, arXiv:1812.00316 [math.NT], 2018.
EXAMPLE
For n=0..3 the Maclaurin coefficients are 1, -1/12, 1/288, 67/61840.
MAPLE
A321938List := proc(len) local mu, ser;
mu := h -> sum(bernoulli(2*k)/(2*k)!*h^(2*k-1), k=1..infinity);
ser := series(exp(mu(h)), h, len+2): seq(denom(coeff(ser, h, n)), n=0..len) end:
A321938List(14); # Peter Luschny, Dec 05 2018
MATHEMATICA
Exp[1/x - 1/(Exp[x]-1) - 1/2] + O[x]^20 // CoefficientList[#, x]& // Denominator (* Jean-François Alcover, Jan 21 2019 *)
PROG
(PARI) x='x+O('x^25); apply(denominator, Vec(exp(1/x - 1/(exp(x)-1) - 1/2))) \\ Joerg Arndt, Dec 05 2018
CROSSREFS
Numerators are A321937.
Sequence in context: A159827 A192191 A145448 * A001164 A226100 A041267
KEYWORD
nonn,frac
AUTHOR
Richard P. Brent, Nov 22 2018
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 23 13:51 EDT 2024. Contains 371914 sequences. (Running on oeis4.)