The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A203305 Vandermonde determinant of the first n terms of (1,3,7,15,31,...). 8
1, 2, 48, 64512, 20808990720, 6658450862270054400, 8590449816558320728896700416000, 180165778137909187135292776823951671626301440000, 246665746050863452218796304775365273357060390005370386894553088000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Each term divides its successor, as in A028365 and A203307.
LINKS
FORMULA
a(n) = Product_{k=1..n-1} Product_{j=1..k} (2^(k+1) - 2^j).
From Vaclav Kotesovec, Feb 18 2021: (Start)
a(n) = (-1)^n * (2^(n*(n+1)*(2*n+1)/6 - 1) / QPochhammer(2,2,n)) * Product_{k=2..n} QPochhammer(1/2^k, 2, k).
a(n) ~ 2^(n*(n^2 - 1)/3) * QPochhammer(1/2)^n / A335011. (End)
a(n) = Product_{k=2..n} ( 2^(k+1)^2 * QPochhammer(2^(-k-1), 2, k+1) )/ (2^(k+1) - 1). - G. C. Greubel, Aug 30 2023
MATHEMATICA
(* First program *)
f[j_]:= 2^j - 1; z = 15;
v[n_]:= Product[Product[f[k] - f[j], {j, k-1}], {k, 2, n}]
Table[v[n], {n, z}] (* A203305 *)
Table[v[n+1]/v[n], {n, z}] (* A028365 *)
%/2 (* A203307 *)
(* Second program *)
Table[(-1)^n * 2^(n*(n+1)*(2*n+1)/6 - 1) / QPochhammer[2, 2, n] * Product[QPochhammer[1/2^k, 2, k], {k, 2, n}], {n, 10}] (* Vaclav Kotesovec, Feb 18 2021 *)
PROG
(Magma) [1] cat [(&*[(&*[2^(k+1) - 2^j: j in [1..k]]): k in [1..n-1]]): n in [2..15]]; // G. C. Greubel, Aug 30 2023
(SageMath) [product(product(2^k - 2^j for j in range(1, k)) for k in range(2, n+1)) for n in range(1, 16)] # G. C. Greubel, Aug 30 2023
CROSSREFS
Sequence in context: A098694 A137592 A203778 * A191954 A344665 A212170
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 01 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 May 21 11:13 EDT 2024. Contains 372735 sequences. (Running on oeis4.)