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.

A036503 Denominator of n^(n-2)/n!.

This page as a plain text file.
%I A036503 #17 Sep 08 2022 08:44:52
%S A036503 1,2,2,3,24,5,720,315,4480,567,3628800,1925,479001600,868725,14350336,
%T A036503 638512875,20922789888000,14889875,6402373705728000,14849255421,
%U A036503 7567605760000,17717861581875,1124000727777607680000,2505147019375
%N A036503 Denominator of n^(n-2)/n!.
%C A036503 Denominators of coefficient in LambertW(x) power series, where LambertW(x) is the transcendental function satisfying LambertW(x)*exp( LambertW(x) )=x. - _Benoit Cloitre_, May 08 2002
%C A036503 Absolute value of denominator of the coefficient of 1/(n*x-1) in the partial fraction decomposition of 1/(x-1)*1/(2*x-1)*...*1/(n*x-1). [Joris Roos (jorisr(AT)gmx.de), Aug 02 2009]
%H A036503 G. C. Greubel, <a href="/A036503/b036503.txt">Table of n, a(n) for n = 1..450</a>
%e A036503 1, 1/2, 1/2, 2/3, 25/24, 9/5, 2401/720, 2048/315, 59049/4480, 15625/567, 214358881/3628800, ...
%t A036503 Denominator[Table[n^(n - 2)/n!, {n, 1, 50}]] (* _G. C. Greubel_, Nov 14 2017 *)
%o A036503 (PARI) for(n=1, 50, print1(denominator(n^(n-2)/n!), ", ")) \\ _G. C. Greubel_, Nov 14 2017
%o A036503 (Magma) [Denominator(n^(n - 2)/Factorial(n)): n in [1..50]]; // _G. C. Greubel_, Nov 14 2017
%Y A036503 Cf. A036502, A036504.
%K A036503 nonn,frac
%O A036503 1,2
%A A036503 _N. J. A. Sloane_