OFFSET
1,2
COMMENTS
a(n) is squarefree.
Conjecture: for any squarefree k exists m such that a(m)=k; see A070078.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Cubefree.
Eric Weisstein's World of Mathematics, Squarefree.
EXAMPLE
MATHEMATICA
With[{max = 150}, e = Max[FactorInteger[#][[;; , 2]]] & /@ Range[max]; sqf = Flatten[Position[e, _?(# < 2 &)]]; cbf = Flatten[Position[e, _?(# < 3 &)]]; GCD[sqf, cbf[[1 ;; Length[sqf]]]]] (* Amiram Eldar, Oct 20 2023 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Apr 22 2002
STATUS
approved