[go: up one dir, main page]

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

Showing entries 1-10 | older changes
a(n) is the smallest integer that has exactly n divisors from A333369.
(history; published version)
#36 by N. J. A. Sloane at Sat Jul 30 12:53:26 EDT 2022
STATUS

editing

approved

#35 by N. J. A. Sloane at Sat Jul 30 12:53:25 EDT 2022
LINKS

Project Euler, <a href="https://projecteuler.net/problem=520">Problem 520: Simbers</a>.

STATUS

approved

editing

#34 by N. J. A. Sloane at Sat Jul 30 12:35:12 EDT 2022
STATUS

editing

approved

#33 by N. J. A. Sloane at Sat Jul 30 12:35:10 EDT 2022
NAME

a(n) is the smallest integer that has exactly n simbers divisors from A333369.

COMMENTS

The word simber (A333369) comes from Project Euler in link.

The six first terms are also the six first highly composite odd numbers (A053624).

EXAMPLE

15 has 4 divisors: {1, 3, 5, 15} all of which are simbers in A333369 integers; , and no positive integer smaller than 15 number has four simber divisors, this property, hence a(4) = 15.

STATUS

approved

editing

#32 by Michael De Vlieger at Sat Jul 23 19:24:02 EDT 2022
STATUS

reviewed

approved

#31 by Michel Marcus at Sat Jul 23 11:41:39 EDT 2022
STATUS

proposed

reviewed

#30 by Michael S. Branicky at Sat Jul 23 11:28:45 EDT 2022
STATUS

editing

proposed

#29 by Michael S. Branicky at Sat Jul 23 11:28:41 EDT 2022
PROG

(Python)

from sympy import divisors

from itertools import count, islice

def c(n): s = str(n); return all(s.count(d)%2 == int(d)%2 for d in set(s))

def f(n): return sum(1 for d in divisors(n, generator=True) if c(d))

def agen():

n, adict = 1, dict()

for k in count(1):

fk = f(k)

if fk not in adict: adict[fk] = k

while n in adict: yield adict[n]; n += 1

print(list(islice(agen(), 29))) # Michael S. Branicky, Jul 23 2022

#28 by Michael S. Branicky at Sat Jul 23 11:21:59 EDT 2022
LINKS

Michael S. Branicky, <a href="/A355771/b355771.txt">Table of n, a(n) for n = 1..87</a>

STATUS

approved

editing

#27 by Michael De Vlieger at Thu Jul 21 14:43:28 EDT 2022
STATUS

reviewed

approved