OFFSET
1,2
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
S. Colton, Refactorable Numbers - A Machine Invention, J. Integer Sequences, Vol. 2, 1999, #2.
EXAMPLE
9 is refactorable because tau(9)=3 and 3 divides 9 and 9 is a square number.
MATHEMATICA
Select[Range[300]^2, Divisible[#, DivisorSigma[0, #]]&] (* Harvey P. Dale, Nov 21 2020 *)
PROG
(PARI) isok(n) = issquare(n) && ! (n % numdiv(n)); \\ Michel Marcus, Aug 31 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Simon Colton (simonco(AT)cs.york.ac.uk)
STATUS
approved