OFFSET
1,1
COMMENTS
Numbers n such that the exponent of the largest prime dividing n is one. - Harvey P. Dale, May 02 2019
From Peter Munn, Sep 30 2020: (Start)
2 together with numbers on the left half of the Doudna sequence tree depicted in Antti Karttunen's 2014 comment in A005940.
This sequence and A335738, considered as sets, are related by the self-inverse function A225546(.), which maps the members of either set 1:1 onto the other set.
(End)
LINKS
Rémy Sigrist, Table of n, a(n) for n = 1..25000
EXAMPLE
63 is included because 63 = 3^2 *7 and 7 (the largest prime dividing 63) only divides 63 once.
MATHEMATICA
Select[Range[2, 100], FactorInteger[#][[-1, 2]]==1&] (* Harvey P. Dale, May 02 2019 *)
PROG
(PARI) isok(n) = my(f = factor(n)); n % f[#f~, 1]^2; \\ Michel Marcus, May 20 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Feb 09 2005
EXTENSIONS
More terms from Erich Friedman, Aug 08 2005
STATUS
approved