A092680 Numbers of the form 3*2^k with a single anti-divisor.
3, 6, 96, 393216
Offset: 1
Programs
-
Python
from itertools import count, islice from sympy.ntheory.factor_ import antidivisor_count def A092680_gen(): return filter(lambda n: antidivisor_count(n)==1,(3*2**k for k in count(0))) A092680_list = list(islice(A092680_gen(),4)) # Chai Wah Wu, Jan 04 2022
Formula
a(n) = 3*2^A092679(n).
Comments