login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A075266
Numerator of the coefficient of x^n in log(-log(1-x)/x).
16
1, 5, 1, 251, 19, 19087, 751, 1070017, 2857, 26842253, 434293, 703604254357, 8181904909, 1166309819657, 5044289, 8092989203533249, 5026792806787, 12600467236042756559, 69028763155644023, 8136836498467582599787
OFFSET
1,2
COMMENTS
A series with these numerators leads to Euler's constant: gamma = 1 - 1/4 - 5/72 - 1/32 - 251/14400 - 19/1728 - 19087/2540160 - ..., see references [Blagouchine] below, as well as A262235. - Iaroslav V. Blagouchine, Sep 15 2015
LINKS
Iaroslav V. Blagouchine, Two series expansions for the logarithm of the gamma function involving Stirling numbers and containing only rational coefficients for certain arguments related to 1/pi, Journal of Mathematical Analysis and Applications (Elsevier), 2016. arXiv version, arXiv:1408.3902 [math.NT], 2014-2016
Iaroslav V. Blagouchine, Expansions of generalized Euler's constants into the series of polynomials in 1/pi^2 and into the formal enveloping series with rational coefficients only, Journal of Number Theory (Elsevier), vol. 158, pp. 365-396, 2016. arXiv version, arXiv:1501.00740 [math.NT], 2015.
MAPLE
S:= series(log(-log(1-x)/x), x, 51):
seq(numer(coeff(S, x, j)), j=1..50); # Robert Israel, May 17 2016
# Alternative:
a := proc(n) local r; r := proc(n) option remember; if n=0 then 1 else
1 - add(r(k)/(n-k+1), k=0..n-1) fi end: numer(r(n)/(n*(n+1))) end:
seq(a(n), n=1..20); # Peter Luschny, Apr 19 2018
MATHEMATICA
Numerator[ CoefficientList[ Series[ Log[ -Log[1 - x]/x], {x, 0, 20}], x]]
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Paul D. Hanna, Sep 15 2002
EXTENSIONS
Edited by Robert G. Wilson v, Sep 17 2002
STATUS
approved