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”).

A075267
Denominator of the coefficient of x^n in log(-log(1-x)/x).
8
2, 24, 8, 2880, 288, 362880, 17280, 29030400, 89600, 958003200, 17418240, 31384184832000, 402361344000, 62768369664000, 295206912, 512189896458240000, 342372925440000, 919636959090769920000, 5377993912811520000, 674400436666564608000000, 89903156428800000
OFFSET
1,1
LINKS
MAPLE
S:= series(log(-log(1-x)/x), x, 51):
seq(denom(coeff(S, x, j)), j=1..50); # Robert Israel, May 17 2016
MATHEMATICA
Denominator[ CoefficientList[ Series[ Log[ -Log[1 - x]/x], {x, 0, 18}], x]]
PROG
(Magma) m:=25; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( Log(-Log(1-x)/x) )); [Denominator(b[n]): n in [1..m-2]]; // G. C. Greubel, Oct 29 2018
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Paul D. Hanna, Sep 15 2002
EXTENSIONS
Edited by Robert G. Wilson v, Sep 17 2002
STATUS
approved