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!)
A203428 Reciprocal of Vandermonde determinant of (1/3,1/6,...,1/(3n)). 3
1, -6, -486, 839808, 42515280000, -80335512599040000, -6890065294166289123840000, 31601087581187838970614157148160000, 8925080517850366815864624583251321642024960000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Each term divides its successor, as in A203429.
LINKS
FORMULA
a(n) = (-3)^binomial(n,2) * (Gamma(n+1))^(n-1) / BarnesG(n+1). - G. C. Greubel, Sep 28 2023
MATHEMATICA
(* First program *)
f[j_]:= 1/(3*j); z = 16;
v[n_]:= Product[Product[f[k] - f[j], {j, k-1}], {k, 2, n}]
1/Table[v[n], {n, z}] (* A203428 *)
Table[v[n]/(3*v[n+1]), {n, z}] (* A203429 *)
(* Second program *)
Table[(-3)^Binomial[n, 2]*(Gamma[n+1])^(n-1)/BarnesG[n+1], {n, 20}] (* G. C. Greubel, Sep 28 2023 *)
PROG
(Magma)
Barnes:= func< n | (&*[Factorial(j): j in [1..n-1]]) >;
A203428:= func< n | (-3)^Binomial(n, 2)*(Factorial(n))^n/Barnes(n+1) >;
[A203428(n): n in [1..25]]; // G. C. Greubel, Sep 28 2023
(SageMath)
def barnes(n): return product(factorial(j) for j in range(n))
def A203428(n): return (-3)^binomial(n, 2)*(factorial(n))^n/barnes(n+1)
[A203428(n) for n in range(1, 21)] # G. C. Greubel, Sep 28 2023
CROSSREFS
Sequence in context: A006712 A248361 A345027 * A264741 A197205 A197803
KEYWORD
sign
AUTHOR
Clark Kimberling, Jan 02 2012
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 18 16:22 EDT 2024. Contains 371780 sequences. (Running on oeis4.)