The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A336259 a(0) = 1; a(n) = (n!)^3 * Sum_{k=0..n-1} a(k) / (k! * (n-k))^3. 6
1, 1, 9, 278, 20464, 2948824, 735078968, 291153023664, 172201253334528, 145044581320046592, 167609226267379703808, 257816558769660828601344, 514890814087717253133447168, 1307445058678686737908660752384, 4146656933568759002389401276616704 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (n!)^3 * [x^n] 1 / (1 - polylog(3,x)).
a(n) ~ (n!)^3 / (polylog(2,r) * r^n), where r = 0.86512013798076629268795131756... is the root of the equation polylog(3,r) = 1. - Vaclav Kotesovec, Jul 15 2020
MAPLE
b:= proc(n) option remember; `if`(n=0, 1,
add(b(n-i)/i^3, i=1..n))
end:
a:= n-> n!^3*b(n):
seq(a(n), n=0..14); # Alois P. Heinz, Jan 04 2024
MATHEMATICA
a[0] = 1; a[n_] := a[n] = (n!)^3 Sum[a[k]/(k! (n - k))^3, {k, 0, n - 1}]; Table[a[n], {n, 0, 14}]
nmax = 14; CoefficientList[Series[1/(1 - PolyLog[3, x]), {x, 0, nmax}], x] Range[0, nmax]!^3
CROSSREFS
Sequence in context: A119408 A295898 A330604 * A177107 A346187 A012234
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 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 June 10 10:32 EDT 2024. Contains 373264 sequences. (Running on oeis4.)