OFFSET
1,1
COMMENTS
The growth rate of the sequence seems to converge:
a(100) = 217
a(1000) = 2231
a(10000) = 21535
a(100000) = 214647
a(1000000) = 2155903
a(10000000) = 21553153
Please see comments in A246282.
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..10000
PROG
(PARI)
default(primelimit, 2^22);
A003961(n) = my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); \\ From Michel Marcus
isA246351(n) = (A048673(n) < n);
n = 0; i = 0; while(i < 10000, n++; if(isA246351(n), i++; write("b246351.txt", i, " ", n)));
(Scheme, with Antti Karttunen's IntSeq-library)
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Aug 24 2014
STATUS
approved