OFFSET
1,1
COMMENTS
Even composite numbers x whose prime factorization has either one power of 2 or distinct primes (necessarily including 2).
Even composite numbers x for which there exists y with 1 <= y <= floor(x/4) such that x*y is a square number (for powers of 2), or such that x*y is an oblong number (for even squarefree x).
Omega(x) = omega(x) >= 2 (for even squarefree composites), Omega(x) > omega(x) = 1 (for proper powers of 2).
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10000
Charles Kusniec, Composite Numbers Map for the OEIS.
MATHEMATICA
Select[Range[4, 256, 2], SquareFreeQ[#] || DigitSum[#, 2] == 1 &] (* Paolo Xausa, Jan 12 2026 *)
PROG
(Python)
from math import isqrt
from sympy import mobius
from oeis_sequences.OEISsequences import bisection
def A392262(n):
def f(x): return int(n+x+3-sum(mobius(k)*((x>>1)//k**2+1>>1) for k in range(1, isqrt(x>>1)+1, 2))-x.bit_length())
return bisection(f, n, n) # Chai Wah Wu, Jan 26 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Charles Kusniec, Jan 05 2026
STATUS
approved
