login
A394989
a(n) is the smaller of the two factors whose product is A394987.
0
1, 2, 5, 9, 17, 33, 69, 151, 421, 513, 1341, 2391, 6563, 10209, 23061, 42069, 66225, 257503, 296323, 647089, 1398151, 2099863, 5058487, 10610063, 17380867, 35443881, 71112163, 143998193, 271915383, 692072705, 1085184831, 2281422937, 8587804415, 10583453237, 19576656067
OFFSET
1,2
COMMENTS
The factors may be equal, but no example for n>1 is known.
EXAMPLE
See A394987.
PROG
(Python)
from sympy.utilities.iterables import multiset_permutations
from sympy import divisors
def A394989(n):
a = 1<<n-1
b = a<<1
k = (n<<1)-1
for l in range(k, 0, -1):
for s in multiset_permutations('0'*(k+1-l)+'1'*l):
m = int(''.join(s), 2)
for d in divisors(m):
if d**2>m:
break
if a<=d<b and a*d<=m<b*d:
return d # Chai Wah Wu, Apr 11 2026
CROSSREFS
A394990 is the larger factor.
Sequence in context: A000569 A292168 A322304 * A182992 A115851 A163734
KEYWORD
nonn,new
AUTHOR
Hugo Pfoertner, Apr 09 2026
EXTENSIONS
a(24)-a(35) from Chai Wah Wu, Apr 10 2026
STATUS
approved