Find the next term of this sequence: 1,2,6,12,60,60,420,840
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The the nth term is gcd(1,2,3,...,n) gcd(1)=1, gcd(1,2)=2, gcd(1,2,3)=6 etc
This gives gcd(1,2,3,4,5,6,7,8,9) or 840*3= 2520 as the solution.