A351071 Number of integers x in range A002110(n) .. A002110(1+n)-1 such that the k-th arithmetic derivative of A276086(x) is zero for some k, where A002110(n) is the n-th primorial.
1, 4, 8, 44, 216, 1474, 11130, 92489
Offset: 0
Examples
There are eight terms [6, 7, 9, 12, 15, 20, 21, 28] that are >= A002110(2) and < A002110(3) in A328116 for which the corresponding terms [5, 10, 30, 25, 150, 375, 750, 5625] in A276086 (and A351255) are all in A099308, therefore a(2) = 8.
Crossrefs
Programs
-
PARI
\\ Memoization would work quite badly here. (See comments in A351255. In practice sequence A328306 was computed first, up to its term a(9699690). Same data is available in A328116.) A002110(n) = prod(i=1,n,prime(i)); A003415checked(n) = if(n<=1, 0, my(f=factor(n), s=0); for(i=1, #f~, if(f[i, 2]>=f[i, 1], return(0), s += f[i, 2]/f[i, 1])); (n*s)); A328308(n) = if(!n, 1, while(n>1, n = A003415checked(n)); (n)); A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); }; A328306(n) = A328308(A276086(n)); A351071(n) = sum(k=A002110(n),A002110(1+n)-1,A328306(k));
Comments