OFFSET
1,2
COMMENTS
The complement of A072413.
LINKS
Giuseppe Coppoletta, Table of n, a(n) for n = 1..10000
EXAMPLE
36 is not a term because 36 = 2^2 * 3^2 and gcd(2,2) = 2 > 1.
360 is a term because 360 = 2^3 * 3^2 * 5 and gcd(3,2) = gcd(2,1) = 1.
10800 is not a term because 10800 = 2^4 * 3^3 * 5^2 and gcd(4,2) > 1
MATHEMATICA
Select[Range@ 120, LCM @@ # == Times @@ # &@ Map[Last, FactorInteger@ #] &] (* Michael De Vlieger, May 15 2016 *)
PROG
(Sage) def d(n):
v=factor(n)[:]; L=len(v); diff=prod(v[j][1] for j in range(L)) - lcm([v[j][1] for j in range(L)])
return diff
[k for k in (1..100) if d(k)==0]
(PARI) is(n)=my(f=factor(n)[, 2]); factorback(f)==lcm(f) \\ Charles R Greathouse IV, Jan 14 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Giuseppe Coppoletta, May 14 2016
STATUS
approved