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!)
A284476 Smallest number with same factorization shape as n. 2
1, 2, 2, 4, 2, 6, 2, 4, 4, 6, 2, 12, 2, 6, 6, 16, 2, 12, 2, 12, 6, 6, 2, 12, 4, 6, 4, 12, 2, 30, 2, 4, 6, 6, 6, 36, 2, 6, 6, 12, 2, 30, 2, 12, 12, 6, 2, 48, 4, 12, 6, 12, 2, 12, 6, 12, 6, 6, 2, 60, 2, 6, 12, 64, 6, 30, 2, 12, 6, 30, 2, 36, 2, 6, 12, 12, 6, 30 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A284456 defines the factorization shape of a number.
A284456 corresponds to the fixed points of this sequence.
LINKS
FORMULA
To compute a(n):
1) Factorize n: n = p_1^e_1 * ... * p_k^e_k,
2) Compute a(e_i) for i=1..k,
3) Sort the values computed at step 2 in descending order (keeping duplicates): you obtain, say, f_1 >= ... >= f_k,
4) a(n) = Prod_{i=1..k} prime(i)^f_i.
PROG
(PARI) a(n) = my (f=factor(n)); \
my (x=vecsort(vector(#f~, i, a(f[i, 2])), , 4)); \
return (prod(i=1, #x, prime(i)^x[i]))
CROSSREFS
Cf. A284456.
Sequence in context: A054704 A143525 A086087 * A082174 A278235 A074369
KEYWORD
nonn
AUTHOR
Rémy Sigrist, Mar 27 2017
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 April 17 22:02 EDT 2024. Contains 371767 sequences. (Running on oeis4.)