cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A090138 Denominator of the probability that the sum of n uniform picks on [0,1] is first greater than 2 (i.e., the sum of n-1 is not).

Original entry on oeis.org

1, 1, 6, 3, 40, 90, 336, 56, 51840, 226800, 4435200, 11975040, 188697600, 1210809600, 100590336000, 93405312000, 23712495206400, 2598365952000, 6360528125952, 3754478407680000, 537799391281152000, 802857662698291200
Offset: 1

Views

Author

Eric W. Weisstein, Nov 22 2003

Keywords

Examples

			0, 0, 1/6, 1/3, 11/40, 13/90, 19/336, ...
		

Crossrefs

Cf. A090137 (numerators).

Programs

  • Mathematica
    a[n_] := Denominator[(n - 2)*(2^(n - 1) - n)/n!]; Array[a, 50] (* Amiram Eldar, Apr 12 2022 *)

Formula

a(n) = denominator((n-2)*(2^(n-1)-n)/n!). - Amiram Eldar, Apr 12 2022