login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A322319
a(n) = lcm(A003557(n), A048250(n)).
3
1, 3, 4, 6, 6, 12, 8, 12, 12, 18, 12, 12, 14, 24, 24, 24, 18, 12, 20, 18, 32, 36, 24, 12, 30, 42, 36, 24, 30, 72, 32, 48, 48, 54, 48, 12, 38, 60, 56, 36, 42, 96, 44, 36, 24, 72, 48, 24, 56, 90, 72, 42, 54, 36, 72, 24, 80, 90, 60, 72, 62, 96, 96, 96, 84, 144, 68, 54, 96, 144, 72, 12, 74, 114, 120, 60, 96, 168, 80, 72
OFFSET
1,2
FORMULA
a(n) = lcm(A003557(n), A048250(n)).
a(n) = A001615(n) / A322318(n).
MATHEMATICA
a[n_] := If[n == 1, 1, Module[{f=FactorInteger[n]}, LCM[ Times@@ (First[#] ^(Last[#]-1)& /@ f), Times@@((#+1)& @@@ f)]]]; Array[a, 120] (* Amiram Eldar, Dec 05 2018 *)
PROG
(PARI)
A003557(n) = { my(f=factor(n)); for (i=1, #f~, f[i, 2] = f[i, 2]-1); factorback(f); }; \\ From A003557
A048250(n) = factorback(apply(p -> p+1, factor(n)[, 1]));
A322319(n) = lcm(A048250(n), A003557(n));
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Dec 05 2018
STATUS
approved