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!)
A283995 Least number with same prime signature as the n-th divisorial: a(n) = A046523(A007955(n)). 3

%I #14 Jun 25 2022 21:54:44

%S 1,2,2,8,2,36,2,64,8,36,2,1728,2,36,36,1024,2,1728,2,1728,36,36,2,

%T 331776,8,36,64,1728,2,810000,2,32768,36,36,36,10077696,2,36,36,

%U 331776,2,810000,2,1728,1728,36,2,254803968,8,1728,36,1728,2,331776,36,331776,36,36,2,46656000000,2,36,1728,2097152,36,810000,2,1728,36,810000,2,139314069504,2,36

%N Least number with same prime signature as the n-th divisorial: a(n) = A046523(A007955(n)).

%H Antti Karttunen, <a href="/A283995/b283995.txt">Table of n, a(n) for n = 1..1025</a>

%F a(n) = A046523(A007955(n)).

%t Table[If[n == 1, 1, Times @@ MapIndexed[Prime[First@ #2]^#1 &, FactorInteger[Times @@ Divisors@ n][[All, -1]]]], {n, 74}] (* _Michael De Vlieger_, Mar 22 2017 *)

%o (PARI)

%o A007955(n) = if(issquare(n, &n), n^numdiv(n^2), n^(numdiv(n)/2)); \\ From _Charles R Greathouse IV_, Feb 11 2011

%o A046523(n) = { my(f=vecsort(factor(n)[, 2], , 4), p); prod(i=1, #f, (p=nextprime(p+1))^f[i]); }; \\ From _Charles R Greathouse IV_, Aug 17 2011

%o A283995(n) = A046523(A007955(n));

%o (Scheme) (define (A283995 n) (A046523 (A007955 n)))

%o (Python)

%o from math import prod, isqrt

%o from sympy import prime, factorint, divisor_count

%o def A283995(n): return (lambda n:prod(prime(i+1)**e for i, e in enumerate(sorted(factorint(n).values(), reverse=True))))((isqrt(n) if (c:=divisor_count(n)) & 1 else 1)*n**(c//2)) # _Chai Wah Wu_, Jun 25 2022

%Y Cf. A007955, A046523, A069264, A283990.

%K nonn

%O 1,2

%A _Antti Karttunen_, Mar 22 2017

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 April 18 11:52 EDT 2024. Contains 371779 sequences. (Running on oeis4.)