[go: up one dir, main page]

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

Showing entries 1-10 | older changes
From the Bruck-Ryser theorem: numbers n == 1 or 2 (mod 4) which are also the sum of 2 squares.
(history; published version)
#41 by Alois P. Heinz at Tue Jun 28 18:48:39 EDT 2022
STATUS

proposed

approved

#40 by Chai Wah Wu at Tue Jun 28 18:35:39 EDT 2022
STATUS

editing

proposed

#39 by Chai Wah Wu at Tue Jun 28 18:35:36 EDT 2022
PROG

(Python)

from itertools import count, islice

from sympy import factorint

def A046711_gen(): # generator of terms

return filter(lambda n:0 < n & 3 < 3 and all(p & 3 != 3 or e & 1 == 0 for p, e in factorint(n).items()), count(0))

A046711_list = list(islice(A046711_gen(), 30)) # Chai Wah Wu, Jun 28 2022

STATUS

approved

editing

#38 by Joerg Arndt at Mon Feb 07 02:41:31 EST 2022
STATUS

reviewed

approved

#37 by Joerg Arndt at Mon Feb 07 02:41:24 EST 2022
STATUS

proposed

reviewed

#36 by Joerg Arndt at Mon Feb 07 02:41:14 EST 2022
STATUS

editing

proposed

#35 by Joerg Arndt at Mon Feb 07 02:40:53 EST 2022
COMMENTS

If n == 1 or 2 (mod 4) and the squarefree part of n is divisible by a prime p == 3 (mod 4), then no difference set of order n exists. Equivalently, if a projective plane of order n exists, and n == 1 or 2 (mod 4), then n is the sum of two squares. - Jonathan Vos Post, Apr 17 2011

STATUS

reviewed

editing

Discussion
Mon Feb 07
02:41
Joerg Arndt: plagiarism removed
#34 by Michel Marcus at Mon Feb 07 02:34:46 EST 2022
STATUS

proposed

reviewed

#33 by Jon E. Schoenfield at Mon Feb 07 02:08:40 EST 2022
STATUS

editing

proposed

#32 by Jon E. Schoenfield at Mon Feb 07 02:08:35 EST 2022
COMMENTS

If n = = 1, or 2 (mod 4) and the squarefree part of n is divisible by a prime p = = 3 (mod 4), then no difference set of order n exists. Equivalently, if a projective plane of order n exists, and n == 1 or 2 (mod 4), then n is the sum of two squares. - Jonathan Vos Post, Apr 17 2011

STATUS

approved

editing