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!)
A323290 Numerator of the sum of inverse products of cycle sizes in all permutations of [n]. 5
1, 1, 3, 19, 107, 641, 51103, 1897879, 7860361, 505249081, 40865339743, 1355547261301, 244350418462637, 34907820791828741, 1949845703291363567, 1136592473036395958917, 31690844708764028510969, 2681369908698254192692979, 768531714669026186032238737 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: exp(polylog(2,x)) (for fractions A323290(n)/A323291(n)). - Vaclav Kotesovec, Feb 12 2024
A323290(n)/A323291(n) ~ exp(Pi^2/6) * n! / n^2. - Vaclav Kotesovec, Feb 14 2024
EXAMPLE
1/1, 1/1, 3/2, 19/6, 107/12, 641/20, 51103/360, 1897879/2520, 7860361/1680, 505249081/15120, 40865339743/151200, ... = A323290/A323291
MAPLE
b:= proc(n) option remember; `if`(n=0, 1, add(
b(n-j)*binomial(n-1, j-1)*(j-1)!/j, j=1..n))
end:
a:= n-> numer(b(n)):
seq(a(n), n=0..20);
MATHEMATICA
nmax = 20; Numerator[CoefficientList[Series[Exp[PolyLog[2, x]], {x, 0, nmax}], x] * Range[0, nmax]!] (* Vaclav Kotesovec, Feb 12 2024 *)
CROSSREFS
Denominators: A323291.
Sequence in context: A305555 A323919 A089164 * A072950 A240123 A130425
KEYWORD
nonn,frac
AUTHOR
Alois P. Heinz, Jan 09 2019
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 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)