login
A237873
Denominator of Sum_{i=1..n} n^i/i.
2
1, 1, 2, 3, 12, 5, 20, 105, 280, 63, 2520, 385, 5544, 6435, 8008, 45045, 144144, 85085, 116688, 2909907, 739024, 146965, 232792560, 37182145, 356948592, 128707425, 2974571600, 717084225, 80313433200, 215656441, 30247916400, 4512611027925, 486207248800
OFFSET
1,3
COMMENTS
The sequence gives the denominators of -n^(n+1)*Phi(n,1,n+1)-log(-n+1) for n>1, where Phi is the Lerch transcendent.
LINKS
MATHEMATICA
f[n_] := Sum[n^i/i, {i, 1, n}]; Table[Denominator[f[n]], {n, 1, 40}]
PROG
(Magma) terms:=40; s:=[&+[n^i/i: i in [1..n]]: n in [1..terms]]; [Denominator(s[n]): n in [1..terms]];
CROSSREFS
Cf. A236772, A237872 (numerators)
Sequence in context: A081369 A147967 A120487 * A069220 A301276 A062957
KEYWORD
nonn,frac
AUTHOR
Bruno Berselli, Feb 14 2014
STATUS
approved