login
A370115
Numbers k for which k is a multiple of A276086(A003415(k)), where A003415 is the arithmetic derivative, and A276086 is the primorial base exp-function.
8
0, 1, 2, 10, 15, 161, 2189, 5005, 27030, 29861, 510221, 223092341, 1310518729
OFFSET
1,3
COMMENTS
Question: Is the squarefreeness a necessary condition for the nonzero terms of this sequence?
Many of the terms occur also in A368703, because the arithmetic derivative of those terms is one of the primorial numbers, A002110.
FORMULA
{k such that k is a multiple of A327859(k)}. - Antti Karttunen, Jan 31 2026
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
isA370115(n) = !(n%A276086(A003415(n)));
(PARI) is_A370115(n) = if(n<3, 1, if(isprime(n), 0, my(f=factor(n), u = n*sum(i=1, #f~, f[i, 2]/f[i, 1]), m=1, p=2, pp); while(u, if((pp=(p^(u%p)))>1, m *= pp; if(n%pp, return(0))); u \= p; p = nextprime(1+p)); !(n%m))); \\ Antti Karttunen, Jan 27 2026
CROSSREFS
Positions of 1's in A370117, positions of 0's in A370120.
Intersection of A048103 and A369650 is a subsequence of this sequence. See the comments in latter.
Subsequence of A392867, and probably also of A392868.
Cf. also A369970, A370114.
Sequence in context: A392607 A047187 A048043 * A387658 A043429 A105041
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 11 2024
EXTENSIONS
a(13) added by Antti Karttunen, Jan 30 2026
STATUS
approved