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!)
A302909 Determinant of n X n matrix whose main diagonal consists of the first n 5-gonal numbers and all other elements are 1's. 6
1, 4, 44, 924, 31416, 1570800, 108385200, 9863053200, 1144114171200, 164752440652800, 28831677114240000, 6025820516876160000, 1482351847151535360000, 423952628285339112960000, 139480414705876568163840000, 52305155514703713061440000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
From Vaclav Kotesovec, Apr 16 2018: (Start)
a(n) = Gamma(n) * Gamma(n + 5/3) * 3^(n + 1) / (5 * Gamma(2/3) * 2^n).
a(n) ~ Gamma(1/3) * 3^(n + 3/2) * n^(2*n + 2/3) / (5 * 2^n * exp(2*n)).
(End)
a(n + 1) = A115067(n + 1) * a(n) = a(n) * n*(3*n + 5)/2. - David A. Corneth, Apr 16 2018
EXAMPLE
The 7 X 7 matrix (as below) has determinant 108385200.
1 1 1 1 1 1 1
1 5 1 1 1 1 1
1 1 12 1 1 1 1
1 1 1 22 1 1 1
1 1 1 1 35 1 1
1 1 1 1 1 51 1
1 1 1 1 1 1 70
MAPLE
d:=(i, j)->`if`(i<>j, 1, i*(3*i-1)/2):
seq(LinearAlgebra[Determinant](Matrix(n, d)), n=1..17);
MATHEMATICA
Table[FullSimplify[Gamma[n] * Gamma[n + 5/3] * 3^(n + 1) / (5 * Gamma[2/3] * 2^n)], {n, 1, 15}] (* Vaclav Kotesovec, Apr 16 2018 *)
PROG
(PARI) a(n) = matdet(matrix(n, n, i, j, if (i!=j, 1, i*(3*i-1)/2))); \\ Michel Marcus, Apr 16 2018
(PARI) first(n) = my(res = vector(n)); res[1] = 1; for(i = 1, n - 1, res[i + 1] = res[i] * i*(3*i + 5)/2); res \\ David A. Corneth, Apr 16 2018
CROSSREFS
Cf. Determinant of n X n matrix whose main diagonal consists of the first n k-gonal numbers and all other elements are 1's: A000142 (k=2), A067550 (k=3), A010791 (k=4, with offset 1), this sequence (k=5), A302910 (k=6), A302911 (k=7), A302912 (k=8), A302913 (k=9), A302914 (k=10).
Sequence in context: A240318 A227656 A206686 * A053333 A301942 A348130
KEYWORD
nonn
AUTHOR
Muniru A Asiru, Apr 15 2018
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)