data = {
let x = Math.max(1, Math.floor(number)) || 1;
let i = 0;
let q;
const nodes = [x];
const links = [];
yield {nodes, links};
for (const p of primes()) {
if (!(p * p <= x)) break;
while ((q = x / p) > 1 && q === Math.floor(q)) {
const i = nodes.length - 1;
nodes.push(p, x = q);
links.push([i, i + 1], [i, i + 2]);
yield {p, nodes, links};
}
if (++i % 1000 === 0) {
yield {p, nodes, links};
}
}
}