A273878 Numerator of (2*(n+1)!/(n+2)).
1, 4, 3, 48, 40, 1440, 1260, 8960, 72576, 7257600, 6652800, 958003200, 889574400, 11623772160, 163459296000, 41845579776000, 39520825344000, 12804747411456000, 12164510040883200, 231704953159680000, 4644631106519040000
Offset: 0
Examples
The first few moments of p(x) are: 1, 4/3, 3, 48/5, 40, 1440/7, … .
Links
- J. W. Meijer and N. H. G. Baken, The Exponential Integral Distribution, Statistics and Probability Letters, Volume 5, No.3, April 1987. pp 209-211.
Programs
-
Maple
a := proc(n): numer(2*(n+1)!/(n+2)) end: seq(a(n), n=0..20);
-
PARI
a(n) = numerator(2*(n+1)!/(n+2)) \\ Felix Fröhlich, Jun 09 2016
Comments