OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..196 (terms below 10^11)
Kevser Aktaş and M. Ram Murty, On the number of special numbers, Proceedings - Mathematical Sciences, Vol. 127, No. 3 (2017), pp. 423-430; alternative link.
Bernardo Recamán Santos, Consecutive numbers with mutually distinct exponents in their canonical prime factorization, MathOverflow, Mar 30 2015.
EXAMPLE
2 is a term since 2, 3, 4 = 2^2, and 5 all have a single exponent in their prime factorization.
3 is not a term since in the run {3, 4, 5, 6} the fourth member 6 = 2*3 has two equal exponents (1) in its prime factorization.
MATHEMATICA
q[n_] := Length[(e = FactorInteger[n][[;; , 2]])] == Length[Union[e]]; v = q /@ Range[4]; seq = {}; Do[If[And @@ v, AppendTo[seq, k - 4]]; v = Join[Rest[v], {q[k]}], {k, 5, 10^5}]; seq
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Feb 25 2021
STATUS
approved