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!)
A213131 Polylogarithm li(-n,-1/8) multiplied by (9^(n+1))/8. 4
1, -1, -7, -33, 105, 5199, 64953, -46593, -21769335, -497664081, -1941272487, 256114020447, 9566995408425, 99966666676239, -6245895772363527, -366865939437422913, -6924777575908002615, 259022993102904450159, 24387711970312991335833, 716398360186298080983327 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
See the sequence A212846 which describes the general case of li(-n,-p/q). This sequence is obtained for p=1,q=8.
LINKS
FORMULA
See formula in A212846, setting p=1,q=8.
E.g.f.: 9/(8+exp(9*x)). [Joerg Arndt, Apr 21 2013]
a(n) = Sum_{k=0..n} k! * (-1)^k * 9^(n-k) * Stirling2(n,k). - Seiichi Manyama, Mar 13 2022
EXAMPLE
polylog(-5,-1/8)*9^6/8 = 5199.
MAPLE
seq(add((-1)^(n-k)*combinat[eulerian1](n, k)*8^k, k=0..n), n=0..17); # Peter Luschny, Apr 21 2013
MATHEMATICA
Table[If[n == 0, 1, PolyLog[-n, -1/8] 9^(n+1)/8], {n, 0, 19}] (* Jean-François Alcover, Jun 27 2019 *)
PROG
(PARI) /* See A212846; run limnpq(nmax, 1, 8) */
(PARI) x='x+O('x^66); Vec(serlaplace( 9/(8+exp(9*x)) )) \\ Joerg Arndt, Apr 21 2013
(PARI) a(n) = sum(k=0, n, k!*(-1)^k*9^(n-k)*stirling(n, k, 2)); \\ Seiichi Manyama, Mar 13 2022
CROSSREFS
Sequence in context: A370214 A362300 A131211 * A100855 A256860 A221036
KEYWORD
sign
AUTHOR
Stanislav Sykora, Jun 06 2012
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 19 11:14 EDT 2024. Contains 371791 sequences. (Running on oeis4.)