login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A368919 Number of terms of A368917 less than 10^n, where A368917 lists the numbers k for which there is no prime p such that p^p divides the arithmetic derivative of A276086(k), where A276086 is the primorial base exp-function. 3
8, 88, 863, 8634, 86407, 864150, 8641439, 86414292 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Value a(n) / 10^n seems to converge to 1 - lim_{n->oo} (A368911(n) / 10^n).
LINKS
PROG
(PARI)
A327860(n) = { my(s=0, m=1, p=2, e); while(n, e = (n%p); m *= (p^e); s += (e/p); n = n\p; p = nextprime(1+p)); (s*m); };
A359550(n) = { my(f = factor(n)); prod(k=1, #f~, (f[k, 2]<f[k, 1])); };
A368916(n) = ((n>0)&&A359550(A327860(n)));
tp=10; s=0; for(n=1, 10^10, s+=A368916(n); if(1+n==tp, print1(s, ", "), if(n==tp, tp *= 10)));
CROSSREFS
Sequence in context: A271939 A043043 A003492 * A053376 A053377 A053378
KEYWORD
nonn,more
AUTHOR
Antti Karttunen, Jan 14 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 11 05:15 EDT 2024. Contains 372388 sequences. (Running on oeis4.)