OFFSET
1,1
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..20000
MAPLE
s:= n-> sort(map(i-> i[2], ifactors(n)[2])):
a:= proc(n) option remember; local k; for k from
1+a(n-1) while s(k)<>s(k-1) do od; k
end: a(0):=1:
seq(a(n), n=1..60); # Alois P. Heinz, Mar 09 2018
MATHEMATICA
PrimeFactorExponents[n_] := Flatten[ Table[ # [[2]], {1}] & /@ FactorInteger[n]]; Select[ Range[3, 543], PrimeFactorExponents[ # ] == PrimeFactorExponents[ # - 1] & ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, May 07 2003
EXTENSIONS
Corrected and extended by James A. Sellers, May 19, 2003
Some terms corrected by Alois P. Heinz, Mar 09 2018
STATUS
approved