A121985 Denominator of PolyLog(-n, 1/n).
12, 1, 8, 81, 512, 15625, 11664, 5764801, 8388608, 387420489, 78125000, 3138428376721, 5159780352, 3937376385699289, 21703138331168, 1081219482421875, 144115188075855872, 14063084452067724991009
Offset: 1
Examples
PolyLog(-n, 1/n) begins -1/12, 6, 33/8, 380/81, 3535/512, 189714/15625, ... a(3) = 2^3; a(4) = 3^4; a(200) = 199^200; a(257) = 2^1809; a(290) = 17^564; a(319) = 2^7 * 3^164 * 53^314, where 2*3*53 = 318 = 319 - 1 and 314 = 319 - 319/53 + 1; a(709) = 2^716 * 3^360 * 59^698; a(710) = 709^710.
Links
- G. C. Greubel, Table of n, a(n) for n = 1..430
- Eric Weisstein's World of Mathematics, Polylogarithm.
- Eric Weisstein's World of Mathematics, Eulerian number
Programs
-
Mathematica
Join[{12}, Table[Denominator[PolyLog[ -n,1/n]],{n,2,30}]]
-
PARI
a(n)=denominator(polylog(-n,1/n)) \\ Charles R Greathouse IV, Jul 14 2014
Formula
a(n) = denominator(PolyLog(-n, 1/n)).
a(n) = denominator((-1)^(n+1) * PolyLog(-n, n)).
Comments