The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A367099 Least positive integer such that the number of divisors having two distinct prime factors is n. 2
1, 6, 12, 24, 36, 60, 72, 120, 144, 216, 288, 360, 432, 960, 720, 864, 1296, 1440, 1728, 2160, 2592, 3456, 7560, 4320, 5184, 7776, 10800, 8640, 10368, 12960, 15552, 17280, 20736, 40320, 25920, 31104, 41472, 60480, 64800, 51840, 62208, 77760, 93312 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Does this contain every power of six, namely 1, 6, 36, 216, 1296, 7776, ...?
Yes, every power of six is a term, since 6^k = 2^k * 3^k is the least positive integer having n = tau(6^k) - (2k+1) divisors with two distinct prime factors. - Ivan N. Ianakiev, Nov 11 2023
LINKS
EXAMPLE
The divisors of 60 having two distinct prime factors are: 6, 10, 12, 15, 20. Since 60 is the first number having five such divisors, we have a(5) = 60.
The terms together with their prime indices begin:
1: {}
6: {1,2}
12: {1,1,2}
24: {1,1,1,2}
36: {1,1,2,2}
60: {1,1,2,3}
72: {1,1,1,2,2}
120: {1,1,1,2,3}
144: {1,1,1,1,2,2}
216: {1,1,1,2,2,2}
288: {1,1,1,1,1,2,2}
360: {1,1,1,2,2,3}
432: {1,1,1,1,2,2,2}
960: {1,1,1,1,1,1,2,3}
720: {1,1,1,1,2,2,3}
864: {1,1,1,1,1,2,2,2}
MATHEMATICA
nn=1000;
w=Table[Length[Select[Divisors[n], PrimeNu[#]==2&]], {n, nn}];
spnm[y_]:=Max@@NestWhile[Most, y, Union[#]!=Range[0, Max@@#]&];
Table[Position[w, k][[1, 1]], {k, 0, spnm[w]}]
PROG
(PARI) a(n) = my(k=1); while (sumdiv(k, d, omega(d)==2) != n, k++); k; \\ Michel Marcus, Nov 11 2023
CROSSREFS
The version for all divisors is A005179 (firsts of A000005).
For all prime factors (A001222) we have A220264, firsts of A086971.
Positions of first appearances in A367098 (counts divisors in A007774).
A000961 lists prime powers, complement A024619.
A001221 counts distinct prime factors.
A001358 lists semiprimes, squarefree A006881, complement A100959.
A367096 lists semiprime divisors, sum A076290.
Sequence in context: A187678 A124509 A319127 * A063104 A090765 A199910
KEYWORD
nonn
AUTHOR
Gus Wiseman, Nov 09 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 16 20:35 EDT 2024. Contains 372555 sequences. (Running on oeis4.)