login
Nonsquarefree numbers k such that A003415(k) divides A276086(k), where A003415 is the arithmetic derivative, and A276086 is the primorial base exp-function.
3

%I #7 Mar 13 2024 12:13:44

%S 9,25,49,207,333,375,531,605,819,1331,1719,1850,2057,2205,2299,2331,

%T 2853,4491,4575,5746,6413,6591,6655,9559,9873,12947,13426,14063,15851,

%U 15886,16425,17303,19125,19942,20531,21609,21970,22139,26667,30923,33975,34731,35379,37251,37873,38350,38599,39075,41743,44447,45950

%N Nonsquarefree numbers k such that A003415(k) divides A276086(k), where A003415 is the arithmetic derivative, and A276086 is the primorial base exp-function.

%H Antti Karttunen, <a href="/A371085/b371085.txt">Table of n, a(n) for n = 1..7575</a>

%H <a href="/index/Pri#primorialbase">Index entries for sequences related to primorial base</a>

%o (PARI)

%o A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));

%o A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };

%o A358220(n) = if(n<2, 0, !(A276086(n)%A003415(n)));

%o isA371085(n) = (!issquarefree(n)&&A358220(n));

%Y Intersection of A013929 and A358221 (or A358222).

%Y Subsequence of A371083, and of A371086.

%Y Cf. A003415, A276086.

%K nonn

%O 1,1

%A _Antti Karttunen_, Mar 12 2024