OFFSET
1,3
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
A. J. Kempner, Miscellanea, Amer. Math. Monthly, 25 (1918), 201-210 [ See Section II, "Concerning the smallest integer m! divisible by a given integer n". ]
MATHEMATICA
a[n_] := Module[{m = 1, x = n, as = 1, p}, While[x > 1, m++; p = GCD[x, m]; x = x/p; as *= m/p]; as]; Array[a, 30] (* Jean-François Alcover, May 09 2017, after Antonio Roldán *)
PROG
(PARI) a(n)={local(m=1, x=n, as=1, p); while(x>1, m++; p=gcd(x, m); x=x/p; as*=m/p); as} \\ Antonio Roldán, Apr 04 2015
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
STATUS
approved