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!)
A202768 Vandermonde determinant of the first n squares. 5
1, 1, 3, 120, 151200, 10973491200, 73004442255360000, 64942882916646518784000000, 10615517921765466641283416064000000000, 419534029722194863260820186269027926016000000000000, 5103425917047830280023316797736216735574814664897331200000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Each term divides its successor, as in A110468.
a(m) is also the determinant of m X m matrix M(i,j) = i^(2*j)*cosh(2*j*arccsch(i)), with i from 1 to m, and j from 0 to m-1. - Federico Provvedi, Jan 20 2021
LINKS
FORMULA
a(n) = Product_{k=0..n-1} (2*k+1)!/(k+1) = Product_{k=0..n-1} A110468(k). - Paul D. Hanna, Jan 02 2012
a(n) ~ 2^(n^2 + n - 7/24) * n^(n^2 - n/2 - 13/24) * Pi^((n-1)/2) / (sqrt(A) * exp(3*n^2/2 - n/2 - 1/24)), where A is the Glaisher-Kinkelin constant A074962. - Vaclav Kotesovec, Jan 25 2019
a(n) = A168467(n) / A000142(n). - Federico Provvedi, Apr 01 2021
EXAMPLE
a(3) = (4-1)(9-1)(9-4) = 120.
MAPLE
with(LinearAlgebra):
a:= n-> Determinant(VandermondeMatrix([i^2$i=1..n])):
seq(a(n), n=0..12); # Alois P. Heinz, Aug 21 2014
MATHEMATICA
f[j_] := j^2; z = 15;
v[n_] := Product[Product[f[k] - f[j], {j, 1, k - 1}], {k, 2, n}]
Table[v[n], {n, 1, z}] (* A202768 *)
Table[v[n + 1]/v[n], {n, 1, z - 1}] (* A110468 *)
(* or *)
Det@TrigExpand@Array[#1^(2*#2)*Cosh[2*#2*ArcCsch[#1]]&, {#, #}, {1, 0}]&/@Range@16 (* Federico Provvedi, Jan 20 2021 *)
Table[Exp[(n^2-1/24)*Log[2]-(n/2+1/4)*Log[Pi]+3/2*Log@Glaisher+Log@BarnesG[1+n]+Log@BarnesG[3/2+n]-1/8]/n!, {n, 0, 40}] (* Federico Provvedi, Apr 01 2021 after Vaclav Kotesovec's formula *)
PROG
(PARI) a(n)=prod(k=1, n, (2*k-1)!/k) /* Paul D. Hanna, Jan 02 2012 */
(Python)
from math import prod
def A202768(n): return (prod(((m:=k+1<<1)*(m+1))**(n-1-k)//(k+1) for k in range(1, n-1))*3**(n-1)<<n-1)//n if n else 1 # Chai Wah Wu, Nov 26 2023
CROSSREFS
Sequence in context: A308142 A289704 A246292 * A289986 A301559 A141440
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 01 2012
EXTENSIONS
a(0) from Alois P. Heinz, Aug 21 2014
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 July 21 16:10 EDT 2024. Contains 374475 sequences. (Running on oeis4.)