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!)
A328584 Least common multiple of n and A276086(n). 3
0, 2, 6, 6, 36, 90, 30, 70, 120, 90, 90, 990, 300, 650, 1050, 150, 3600, 7650, 2250, 4750, 1500, 5250, 24750, 51750, 15000, 1250, 48750, 33750, 157500, 326250, 210, 434, 672, 462, 2142, 630, 1260, 2590, 3990, 2730, 2520, 25830, 1050, 15050, 23100, 3150, 72450, 148050, 42000, 12250, 5250, 89250, 409500, 834750, 236250 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = lcm(n, A276086(n)).
a(n) = A324580(n) / A324198(n).
PROG
(PARI)
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
A328584(n) = lcm(n, A276086(n));
(PARI)
A006530(n) = if(n>1, vecmax(factor(n)[, 1]), 1); \\ From A006530.
A328584(n) = if(!n, n, my(m=1, p=2, orgn=n, maxp = A006530(n)); while(n || (p<=maxp), m *= (p^max(n%p, valuation(orgn, p))); n = n\p; p = nextprime(1+p)); (m));
CROSSREFS
Sequence in context: A155948 A368393 A228955 * A226707 A097504 A356521
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 21 2019
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 23 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)