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!)
A066332 a(1)=1; for n > 0, a(n+1) = rad(a(n))*n where rad=A007947. 2
1, 1, 2, 6, 24, 30, 180, 210, 1680, 1890, 2100, 2310, 27720, 30030, 420420, 450450, 480480, 510510, 9189180, 9699690, 193993800, 203693490, 213393180, 223092870, 5354228880, 5577321750, 5800414620, 6023507490, 6246600360, 6469693230, 194090796900, 200560490130 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(1)=1; for n > 1, a(n) = (n-1) * Product_{p prime < (n-1)} p. - Pedro Caceres, Mar 12 2018
a(A008864(n)) = A002110(n). - Michel Marcus, Mar 17 2018
MATHEMATICA
rad[n_] := Times @@ (First@# & /@ FactorInteger@n); a[n_] := (n -1)rad[a[n -1]]; a[1] = 1; Array[a, 30] (* Robert G. Wilson v, Dec 14 2016 and modified Dec 24 2016 *)
PROG
(PARI) a(n) = if(n==1, 1, (n-1)*prod(k=1, primepi(n-2), prime(k))); \\ Daniel Suteu, Dec 14 2016
(PARI) rad(n) = factorback(factorint(n)[, 1]);
a(n) = if (n==1, 1, (n-1)*rad(a(n-1))); \\ Michel Marcus, Dec 21 2016
CROSSREFS
Sequence in context: A359450 A190424 A322484 * A069141 A158977 A165823
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jan 05 2002
EXTENSIONS
More terms from Michel Marcus, Mar 17 2018
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)