OFFSET
1,2
COMMENTS
Contains all prime numbers, numbers with two different prime factors... First 37 terms are the same as that of A036537. 54 is member of A036537, but it is not member of this sequence. 64 is member of this sequence but not of A036537. - Vladimir Baltic, Aug 03 2002
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..10000
EXAMPLE
8 is a member as 8 = 1*2*4. but 9 is not as the divisors of 9 are 1,3,9 and 9 is not a partial product.
MATHEMATICA
Select[Range[110], MemberQ[FoldList[Times, 1, Divisors[#]], #]&] (* Harvey P. Dale, Jan 01 2014 *)
PROG
(PARI) isok(n) = {d = divisors(n); pr = 1; for(k=1, #d, pr *= d[k]; if (pr == n, return(1)); ); } \\ Michel Marcus, May 19 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Jul 22 2002
EXTENSIONS
More terms from Vladimir Baltic, Aug 03 2002
STATUS
approved