[go: up one dir, main page]

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

Showing entries 1-10 | older changes
Numbers k with the property that the concatenation of the nontrivial divisors of k (i.e., excluding 1 and k) is a prime.
(history; published version)
#30 by Michael De Vlieger at Tue Oct 01 13:17:09 EDT 2024
STATUS

reviewed

approved

#29 by Michel Marcus at Tue Oct 01 12:24:34 EDT 2024
STATUS

proposed

reviewed

#28 by Michael S. Branicky at Tue Oct 01 12:20:07 EDT 2024
STATUS

editing

proposed

#27 by Michael S. Branicky at Tue Oct 01 12:19:26 EDT 2024
PROG

(Python)

from sympy import divisors, isprime

def ok(n):

s = "".join(str(d) for d in divisors(n)[1:-1])

return s != "" and isprime(int(s))

print([k for k in range(319) if ok(k)]) # Michael S. Branicky, Oct 01 2024

STATUS

approved

editing

#26 by Joerg Arndt at Thu Mar 09 07:25:46 EST 2023
STATUS

reviewed

approved

#25 by Jon E. Schoenfield at Thu Mar 09 06:45:00 EST 2023
STATUS

proposed

reviewed

#24 by Jon E. Schoenfield at Thu Mar 09 06:44:47 EST 2023
STATUS

editing

proposed

#23 by Jon E. Schoenfield at Thu Mar 09 06:44:39 EST 2023
NAME

Numbers n k with the property that the concatenation of the nontrivial divisors of n k (i.e., excluding 1 and nk) is a prime.

EXAMPLE

n k | divisors | concatenation

STATUS

reviewed

editing

#22 by Joerg Arndt at Thu Mar 09 06:24:41 EST 2023
STATUS

proposed

reviewed

#21 by Michel Marcus at Thu Mar 09 06:00:38 EST 2023
STATUS

editing

proposed