login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A109425
Numbers k such that tau(k)/omega(k) is an integer, where tau(k) = number of divisors of k and omega(k) = number of distinct prime factors of k.
3
2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 71, 72, 73, 74, 75, 76, 77, 79
OFFSET
1,1
COMMENTS
Integers greater than 1 and not in A109426.
LINKS
EXAMPLE
The number 12 is in the sequence because tau(12) = 6 (1,2,3,4,6,12) and omega(12) = 2 (2,3) and so tau(12)/omega(12) = 3.
The number 36 is not in the sequence because tau(36) = 9 (1,2,3,4,6,9,12,18,36) and omega(36) = 2 (2,3) and so tau(36)/omega(36) = 9/2.
MAPLE
with(numtheory): a:=proc(n) if type(tau(n)/nops(factorset(n)), integer)=true then n else fi end: seq(a(n), n=2..90);
MATHEMATICA
f[n_] := DivisorSigma[0, n]/Length[FactorInteger[n]]; Select[ Range[2, 80], IntegerQ[ f[ # ]] &] (* Robert G. Wilson v, Jun 30 2005 *)
Select[Range[2, 80], IntegerQ[DivisorSigma[0, #]/PrimeNu[#]]&] (* Harvey P. Dale, Sep 29 2024 *)
CROSSREFS
Complement is A109426.
Sequence in context: A083243 A004441 A004438 * A357873 A226537 A349294
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Jun 28 2005
STATUS
approved