OFFSET
1,1
COMMENTS
Numbers that have at least one prime factor exponent m = 1 and at least one m such that 1 < m < 4.
Numbers for which the minimum exponent in their prime factorization is 1 and the maximum exponent is either 2 or 3. - Antti Karttunen, Jan 22 2026
Using the factorization of numbers k into powers of (nonunit) squarefree numbers with distinct exponents that are powers of 2 (cf. row k of A352780), these are the numbers that factorize as i^1 * j^2 with j not divisible by i. - Peter Munn, Feb 25 2026
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
EXAMPLE
Table of n, a(n) for select n:
n a(n)
------------------------
1 12 = 2^2 * 3
2 18 = 2 * 3^2
3 20 = 2^2 * 5
4 24 = 2^3 * 3
5 28 = 2^2 * 7
6 40 = 2^3 * 5
7 44 = 2^2 * 11
8 45 = 3^2 * 5
9 50 = 2 * 5^2
10 52 = 2^2 * 13
13 60 = 2^2 * 3 * 5
20 90 = 2 * 3^2 * 5
MATHEMATICA
Select[Range[240], And[#1 == 1, 1 < #2 < 4] & @@ MinMax@ FactorInteger[#][[;; , -1]] &]
PROG
(PARI) is_A392537(n) = if(n<=1, 0, (e->(vecmin(e)==1 && bitor(vecmax(e), 1)==3))(factor(n)[, 2])); \\ Antti Karttunen, Jan 22 2026
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michael De Vlieger, Jan 16 2026
STATUS
approved
