OFFSET
1,2
COMMENTS
Includes all powers of 2.
Conjecture: The sequence includes all numbers of the form 4*5^n.
The number 10100 is a counterexample for: (a) Prime factorizations of numbers of this sequence will always have only 2's and Fermat primes. (b) No number in this sequence is divisible by more than one distinct odd prime.
EXAMPLE
PROG
(PARI) isok(n) = {if(n%6 == 0, return(0)); my(d = divisors(n)); for (k=1, #d - 1, r = d[k+1]/d[k]; if(numerator(r) != denominator(r) + 1, return(0)); ); return(1); } \\ Jinyuan Wang, Aug 03 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
J. Lowell, Jul 19 2019
STATUS
approved