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!)
A337678 a(0) = 1; a(n) = -(n!)^5 * Sum_{k=0..n-1} a(k) / (k! * (n-k))^5. 2
1, -1, 31, -7322, 7281664, -22105862624, 166969429228448, -2726003940127256256, 86768429205346333655040, -4977000682976771751013908480, 483455102073887625685155978412032, -75632981854199587114694850276377296896, 18281294958403743105166278735321854559387648 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
Sum_{n>=0} a(n) * x^n / (n!)^5 = 1 / (1 + polylog(5,x)).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = -(n!)^5 Sum[a[k]/(k! (n - k))^5, {k, 0, n - 1}]; Table[a[n], {n, 0, 12}]
nmax = 12; CoefficientList[Series[1/(1 + PolyLog[5, x]), {x, 0, nmax}], x] Range[0, nmax]!^5
PROG
(PARI) a(n)={n!^5*polcoef(1/(1 + polylog(5, x + O(x*x^n))), n)} \\ Andrew Howroyd, Sep 15 2020
CROSSREFS
Sequence in context: A263378 A306840 A212858 * A059384 A136676 A135811
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Sep 15 2020
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 August 14 11:18 EDT 2024. Contains 375159 sequences. (Running on oeis4.)