OFFSET
1,1
COMMENTS
Except for the number 1, the sequence A195942 (Zeroless prime powers (excluding primes)) is a subsequence of this sequence because the set of divisors of the numbers of the form p^m with p prime and m >= 2 contains only one semiprime divisor, p^2.
The subset of the nonprime powers is {138, 225, 306, 426, 516, 644, 675, 918, ...}.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
138 is in the sequence because the divisors of 138 are {1, 2, 3, 6, 23, 46, 69, 138} and the sum of the semiprime divisors is 2*3 + 2*23 + 3*23 = 11^2.
MATHEMATICA
semipSigma[n_] := DivisorSum[n, # &, PrimeOmega[#] == 2 &]; Select[Range[2000], (s = semipSigma[#]) > 0 && IntegerQ @ Sqrt[s] &] (* Amiram Eldar, May 10 2020 *)
PROG
(PARI) isok(n) = issquare(s = sumdiv(n, d, d*(bigomega(d)==2))) && (s>0); \\ Michel Marcus, Sep 16 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jul 13 2013
EXTENSIONS
Definition corrected by Michel Marcus, Sep 16 2017
STATUS
approved