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!)
A203421 Reciprocal of Vandermonde determinant of (1,1/2,...,1/n). 10

%I #30 Dec 07 2023 08:27:47

%S 1,-2,-18,1152,720000,-5598720000,-658683809280000,

%T 1381360067999170560000,59463021447701323327733760000,

%U -59463021447701323327733760000000000000,-1542317635347398938581016812202229760000000000000

%N Reciprocal of Vandermonde determinant of (1,1/2,...,1/n).

%C Each term divides its successor, as in A000169.

%H G. C. Greubel, <a href="/A203421/b203421.txt">Table of n, a(n) for n = 1..35</a>

%F G.f.: G(0)/(2*x) -1/x, where G(k)= 1 + 1/(1 - x/(x + (2*k+1)/((2*k+1)^(2*k+1))/(1 + 1/(1 - x/(x - (2*k+2)/((2*k+2)^(2*k+2))/G(k+1)))))); (continued fraction). - _Sergei N. Gladkovskii_, Jun 03 2013

%F a(n) = (-1)^floor(n/2) * hyperfactorial(n)/n! = A057077(n) * A002109(n)/n!. - _Paul J. Harvey_, Feb 08 2014

%F a(n) = Product_{i=2..n} (-i)^(i-1). - _Kevin Ryde_, Apr 17 2022

%F abs(a(n)) ~ A * n^(n*(n-1)/2 - 5/12) / (sqrt(2*Pi) * exp(n^2/4 - n)), where A is the Glaisher-Kinkelin constant A074962. - _Vaclav Kotesovec_, Nov 20 2023

%F a(n) = (-1)^binomial(n,2) * (n!)^n / BarnesG(n+2). - _G. C. Greubel_, Dec 07 2023

%t (* First program *)

%t f[j_] := 1/j; z = 12;

%t v[n_] := Product[Product[f[k] - f[j], {j, 1, k - 1}], {k, 2, n}]

%t Table[v[n], {n, 1, z}]

%t 1/% (* A203421 *)

%t Table[v[n]/v[n + 1], {n, 1, z}] (* A000169 signed *)

%t (* Additional programs *)

%t Table[(-1)^Floor[n/2]*Product[(k + 1)^k, {k, 0, n-1}], {n, 1, 10}] (* _Vaclav Kotesovec_, Oct 18 2015 *)

%t Table[(-1)^Binomial[n,2]*(n!)^n/BarnesG[n+2], {n, 20}] (* _G. C. Greubel_, Dec 07 2023 *)

%o (PARI) a(n) = prod(i=2,n, (-i)^(i-1)); \\ _Kevin Ryde_, Apr 17 2022

%o (Magma)

%o BarnesG:= func< n | (&*[Factorial(k): k in [0..n-2]]) >;

%o A203421:= func< n | (-1)^Binomial(n,2)*(Factorial(n))^n/BarnesG(n+2) >;

%o [A203421(n): n in [1..20]]; // _G. C. Greubel_, Dec 07 2023

%o (SageMath)

%o def BarnesG(n): return product(factorial(k) for k in range(n-1))

%o def A203421(n): return (-1)^binomial(n, 2)*(gamma(n+1))^n/BarnesG(n+2)

%o [A203421(n) for n in range(1, 21)] # _G. C. Greubel_, Dec 07 2023

%Y Cf. A000169, A002109, A057077, A203422, A203424.

%K sign,easy

%O 1,2

%A _Clark Kimberling_, Jan 02 2012

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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)