OFFSET
1,1
COMMENTS
Numbers that equal the product of the proper divisors of their proper divisors. - Scott R. Shannon, Jul 04 2021
LINKS
Hugo Pfoertner, Table of n, a(n) for n = 1..10000
FORMULA
A080256(a(n)) = 5.
A002033(a(n)) = 8. - Juri-Stepan Gerasimov, Sep 26 2009
EXAMPLE
81=3*3*3*3 and 50=2*5*5 are terms.
MATHEMATICA
Module[{nn=20, p4, sdp}, p4=Prime[Range[nn]]^4; sdp=#[[1]] #[[2]]^2&/@ Select[ Tuples[Prime[Range[nn]], 2], #[[1]]!=#[[2]]&]; Take[Join[p4, sdp]// Union, 40]] (* Harvey P. Dale, Jan 31 2021 *)
PROG
(PARI) is(n)=my(f=factor(n)[, 2]~); f==[4] || f==[2, 1] || f==[1, 2] \\ Charles R Greathouse IV, Oct 16 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Feb 10 2003
STATUS
approved