OFFSET
0,3
LINKS
Scott R. Shannon, Table of n, a(n) for n = 0..1000
EXAMPLE
a(5) = 15 hence a(6) = least integer multiple of 15/6 = 5.
PROG
(PARI) a=1; for(n=2, 35, print1(a, ", "); d=gcd(a, n); a=if(d==1, a*n, a/d))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amarnath Murthy, Apr 29 2004
EXTENSIONS
Terms a(14) to a(34) and PARI code from Klaus Brockhaus, Apr 29 2004
Extended to include a(0) by N. J. A. Sloane, Dec 23 2007
STATUS
approved