OFFSET
1,1
COMMENTS
In contrast to A329902, this sequence is monotonic, because each term is obtained from the previous, either by multiplying it by 2, or by "bumping" one [or hypothetically: two] of its prime factors one step up (i.e., replacing it with the next larger prime), and both operations are guaranteed to make the number larger.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
PROG
(PARI)
v073751 = readvec("b073751_to.txt");
A073751(n) = v073751[n];
A004490list(v073751) = { my(v=vector(#v073751)); v[1] = 2; for(n=2, #v, v[n] = v073751[n]*v[n-1]); (v); };
v004490 = A004490list(v073751);
A004490(n) = v004490[n];
A064989(n) = {my(f); f = factor(n); if((n>1 && f[1, 1]==2), f[1, 2] = 0); for (i=1, #f~, f[i, 1] = precprime(f[i, 1]-1)); factorback(f)};
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Mar 08 2021
STATUS
approved