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!)
A364768 The smallest number k that has exactly n of its divisors in A005153. 1
1, 2, 4, 8, 12, 32, 24, 60, 48, 72, 96, 120, 144, 420, 384, 240, 432, 360, 576, 480, 864, 840, 1200, 720, 1728, 1800, 4080, 1920, 2400, 1440, 4752, 2160, 3960, 2520, 3600, 2880, 5280, 3360, 9504, 4320, 9240, 5760, 12240, 7200, 7920, 5040, 10800, 8640, 19800, 12600 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For any n >= 1, the number 2^(n - 1) has exactly n divisors in A005153.
LINKS
EXAMPLE
a(1) = 1 because 1 has only one divisor 1 = A005153(1).
a(2) = 2 because 2 has exactly two divisors 1 = A005153(1) and 2 = A005153(2).
Numbers 3, 5, 7, 9, 11 have only divisor 1 in A005153, 4 has divisors 1, 2, 4 in A005153, numbers 6 and 10 have only two divisors in A005153, and 8 has three divisors in A005153. The number 12 has the divisors {1, 2, 3, 4, 6, 12} and exactly five of them, 1, 2, 4 and 12 are in A005153, so a(5) = 12.
MATHEMATICA
f[p_, e_] := (p^(e + 1) - 1)/(p - 1); pracQ[n_] := (ind = Position[(fct = FactorInteger[n])[[;; , 1]]/(1 + FoldList[Times, 1, f @@@ Most@fct]), _?(# > 1 &)]) == {}; d[n_] := DivisorSum[n, 1 &, pracQ[#] &]; seq[len_, nmax_] := Module[{s = Table[0, {len}], c = 0, n = 1, i}, While[c < len && n < nmax, i = d[n]; If[i <= len && s[[i]] == 0, c++; s[[i]] = n]; n++]; s]; seq[50, 10^5] (* Amiram Eldar, Aug 21 2023 *)
PROG
(Magma) sk:=func<n, k|&+[Divisors(n)[i]:i in [1..k]]>; pr:=func<n|forall{k:k in [2..#Divisors(n)]|sk(n, k-1) ge Divisors(n)[k]-1}>; a:=[]; for n in [1..50] do k:=1; while #[d:d in Divisors(k)|pr(d)] ne n do k:=k+1; end while; Append(~a, k); end for; a;
CROSSREFS
Sequence in context: A358512 A036493 A082906 * A204088 A187941 A085083
KEYWORD
nonn
AUTHOR
Marius A. Burtea, Aug 18 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 July 7 14:32 EDT 2024. Contains 374106 sequences. (Running on oeis4.)