login
A392009
Even squarefree integers with at least 3 prime factors.
2
30, 42, 66, 70, 78, 102, 110, 114, 130, 138, 154, 170, 174, 182, 186, 190, 210, 222, 230, 238, 246, 258, 266, 282, 286, 290, 310, 318, 322, 330, 354, 366, 370, 374, 390, 402, 406, 410, 418, 426, 430, 434, 438, 442, 462, 470, 474, 494, 498, 506, 510, 518, 530, 534
OFFSET
1,1
FORMULA
a(n) = 2*A024556(n).
EXAMPLE
The smallest even squarefree number with exactly 3 distinct prime factors is 30 = 2*3*5.
MATHEMATICA
Select[Range[2, 534, 2], SquareFreeQ[#] && PrimeOmega[#] >= 3 &] (* Michael De Vlieger, Dec 29 2025 *)
PROG
(Python)
from math import isqrt
from sympy import primepi, mobius
from oeis_sequences.OEISsequences import bisection
def A392009(n):
if n == 1: return 30
def f(x): return int(n+x+primepi(y:=x>>1)-sum(mobius(k)*(y//k**2+1>>1) for k in range(1, isqrt(y)+1, 2)))
return bisection(f, n, n) # Chai Wah Wu, Jan 07 2026
CROSSREFS
The even elements of A350352.
Sequence in context: A350352 A093599 A007304 * A160350 A053858 A075819
KEYWORD
nonn
AUTHOR
Charles Kusniec, Dec 26 2025
STATUS
approved