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!)
A192217 a(1)=1; a(n) = n*lcm(n, a(n-1)) for n > 1. 1
1, 4, 36, 144, 3600, 21600, 1058400, 8467200, 76204800, 762048000, 92207808000, 1106493696000, 186997434624000, 2617964084736000, 39269461271040000, 628311380336640000, 181581988917288960000, 3268475800511201280000, 1179919763984543662080000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A000142(n)*A034386(n). - Arkadiusz Wesolowski, Mar 28 2012
MAPLE
a := proc(n) option remember: if(n=1)then return 1:fi: return n*lcm(n, a(n-1)): end: seq(a(n), n=1..19); # Nathaniel Johnston, Jun 26 2011
MATHEMATICA
a[1]=1; a[n_]:=a[n]=n LCM[n, a[n-1]];
Table[a[n], {n, 1, 20}]
CROSSREFS
Sequence in context: A065886 A069053 A193282 * A186434 A270989 A272557
KEYWORD
nonn,easy
AUTHOR
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 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)