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!)
A355078 a(n) is the smallest number k with exactly n divisors in A033075. 0

%I #9 Sep 12 2022 03:55:27

%S 1,2,4,6,18,12,24,60,120,168,360,1080,840,3360,2520,7560,15120,30240,

%T 84840,196560,339360,254520,1102920,763560,1527120,4581360,3054240,

%U 9162720,9926280,19852560,59557680,39705120,119115360,277935840,674987040,1151448480,1469089440

%N a(n) is the smallest number k with exactly n divisors in A033075.

%e 1 has a single divisor in A033075, so a(1) = 1.

%e 2 has divisors 1 and 2 in A033075, so a(2) = 2;

%e 3 has only divisors 1, 3 in A033075, 4 has divisors 1, 2, 4 in A033075, so a(3) = 4.

%e 5 has only divisors 1, 5 in A033075, 6 has divisors 1, 2, 3, 6 in A033075, so a(4) = 6.

%o (Magma) alt:=func<n| forall{i:i in [1..#Intseq(n)-1]|Abs(Intseq(n)[i+1]-Intseq(n)[i]) eq 1}>; a:=[]; for n in [1..37] do k:=1; while #[d:d in Divisors(k)|alt(d)] ne n do k:=k+1; end while; Append(~a,k); end for; a;

%o (PARI) diff(v)=vector(#v-1, i, v[i+1]-v[i]);

%o is(n)=if(n>9, Set(abs(diff(digits(n))))==[1], n>0);

%o a(n) = my(k=1); while (sumdiv(k, d, is(d)) != n, k++); k; \\ _Michel Marcus_, Jul 11 2022

%Y Cf. A033075.

%K nonn,base

%O 1,2

%A _Marius A. Burtea_, Jul 11 2022

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 August 24 14:29 EDT 2024. Contains 375415 sequences. (Running on oeis4.)