OFFSET
1,1
COMMENTS
The corresponding common differences are 2, 4, 2, 2, 8, 4, 2, 10, 6, 2, 2, 14, 4, 6, 8,...
EXAMPLE
105 is in the sequence because the prime divisors are {3, 5, 7} with the common difference = 2.
21505 is in the sequence because the set of the prime divisors is {5, 11, 17, 23} with the common difference = 6.
623645 is in the sequence because the set of the prime divisors is {5, 11, 17, 23, 29} with the common difference = 6.
MAPLE
with(numtheory):
for n from 1 to 10000 do:
r:={}:d:=factorset(n):n0:=nops(d):
for k from 1 to n0-1 do:
r:=r union
{d[k+1]-d[k]}:
od:
if n0>2 and nops(r)= 1
then printf(`%d, `, n):
else
fi:
od:
PROG
(PARI) isok(k) = my(f=factor(k)); if ((nb=omega(f)) > 2, my(v = vector(nb-1, i, f[i+1, 1]-f[i, 1]), w = vector(nb-2, i, v[i+1]-v[i])); w == vector(nb-2); ); \\ Michel Marcus, Aug 20 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Aug 05 2024
STATUS
approved