[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A353452 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
a(n) is the determinant of the n X n symmetric matrix M(n) that is defined as M[i,j] = abs(i - j) if min(i, j) < max(i, j) <= 2*min(i, j), and otherwise 0.
(history; published version)
#19 by Joerg Arndt at Wed Aug 30 02:03:13 EDT 2023
STATUS

reviewed

approved

#18 by Michel Marcus at Wed Aug 30 01:42:12 EDT 2023
STATUS

proposed

reviewed

#17 by Chai Wah Wu at Tue Aug 29 17:20:20 EDT 2023
STATUS

editing

proposed

#16 by Chai Wah Wu at Tue Aug 29 17:20:13 EDT 2023
PROG

(Python)

from sympy import Matrix

def A353452(n): return Matrix(n, n, lambda i, j: abs(i-j) if min(i, j)<max(i, j)<=(min(i, j)<<1)+1 else 0).det() # Chai Wah Wu, Aug 29 2023

STATUS

approved

editing

#15 by Michael De Vlieger at Thu Apr 28 07:48:43 EDT 2022
STATUS

reviewed

approved

#14 by Michel Marcus at Thu Apr 28 02:23:12 EDT 2022
STATUS

proposed

reviewed

#13 by Stefano Spezia at Mon Apr 25 06:38:18 EDT 2022
STATUS

editing

proposed

#12 by Stefano Spezia at Mon Apr 25 06:24:17 EDT 2022
FORMULA

Sum_{i=1..n} Sum_{j=1..n} M[i,j]^2 = A350050(n+1).

CROSSREFS

Cf. A000982 (number of zero matrix elements), A003983, A006918, A007590 (number of positive matrix elements), A049581, A051125, A173997, A350050, A352967, A353453 (permanent).

STATUS

proposed

editing

#11 by Stefano Spezia at Sun Apr 24 08:05:23 EDT 2022
STATUS

editing

proposed

#10 by Stefano Spezia at Sun Apr 24 08:05:10 EDT 2022
CROSSREFS

Cf. A000982 (number of zero matrix elements), A003983, A006918, A007590 (number of positive matrix elements), A049581, A051125, A173997, A352967, A353453 (permanent).

STATUS

proposed

editing