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”).

A058251
LCM of n-th primorial number and its Euler totient.
1
1, 2, 6, 120, 1680, 36960, 5765760, 1568286720, 536354058240, 24672286679040, 2861985254768640, 2661646286934835200, 3545312854197200486400, 5814313080883408797696000, 10500649424075436288638976000
OFFSET
0,2
FORMULA
a(n) = LCM(A002110(n), A000010(A002110(n))) = LCM(A002110(n), A005867(n)).
a(n) = A009262(A002110(n)). - Michel Marcus, Apr 27 2022
EXAMPLE
a(6) = LCM(30030,5760) = 5765760.
MAPLE
[seq(ilcm(product(ithprime(k), k=1..m), product(ithprime(k)-1, k=1..m)), m=1..20)];
MATHEMATICA
LCM[#, EulerPhi[#]]&/@Rest[FoldList[Times, 1, Prime[Range[15]]]] (* Harvey P. Dale, Nov 29 2011 *)
PROG
(PARI) P(n) = prod(k=1, n, prime(k)); \\ A002110
a(n) = my(p= P(n)); lcm(p, eulerphi(p)); \\ Michel Marcus, Apr 27 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Dec 05 2000
EXTENSIONS
a(0)=1 inserted by Jamie Morken, Apr 27 2022
STATUS
approved