OFFSET
1,1
COMMENTS
If k is squarefree, then A002034(k) is the largest prime factor of k, so k is not in the sequence. If p is an odd prime, then A002034(p^2) = 2*p, so p^2 is in the sequence. - David Wasserman, Jan 17 2005
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1000
EXAMPLE
a(1)=9 because 9 is the first number that is not a multiple of A002034(9)=6.
MATHEMATICA
(A002034[n_] := (m=1; While[ !IntegerQ[m!/n], m++ ]; m); list = {}; Do[If[ !IntegerQ[n/A002034[n]], list = Append[list, n]], {n, 100}]; list) (* Jonathan Sondow, Apr 18 2004 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Sep 22 2002
EXTENSIONS
More terms from David Wasserman, Jan 17 2005
Edited by N. J. A. Sloane, Apr 19 2007
STATUS
approved