The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A077139 a(1) = 1, a(n) = lcm(n, a(n-1)) / gcd(n, a(n-1)). 1
1, 2, 6, 6, 30, 5, 35, 280, 2520, 252, 2772, 231, 3003, 858, 1430, 5720, 97240, 437580, 8314020, 415701, 969969, 176358, 4056234, 2704156, 67603900, 2600150, 70204050, 10029150, 290845350, 9694845, 300540195, 9617286240, 35263382880, 1037158320 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(5) = 30 because given a(4) = 6: lcm(5, 6) / gcd(5, 6) = 30 / 1 = 30.
MATHEMATICA
k = 1; Print[k]; Do[k = LCM[n, k] / GCD[n, k]; Print[k], {n, 2, 30}] (* Ryan Propper, Jun 19 2005 *)
nxt[{n_, a_}]:={n+1, LCM[n+1, a]/GCD[n+1, a]}; Transpose[NestList[nxt, {1, 1}, 40]] [[2]] (* Harvey P. Dale, Mar 07 2013 *)
CROSSREFS
Essentially a duplicate of A008339, which is the main entry for this sequence.
Sequence in context: A055204 A212397 A008339 * A068629 A144361 A366369
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Oct 30 2002
EXTENSIONS
Corrected and extended by Ryan Propper, Jun 19 2005
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 June 5 08:12 EDT 2024. Contains 373102 sequences. (Running on oeis4.)