Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #6 Nov 25 2022 11:10:49
%S 2,3,5,6,7,9,11,13,15,17,18,19,21,23,25,26,27,29,31,33,34,35,37,38,39,
%T 41,43,45,46,47,49,51,53,55,57,59,61,65,67,69,70,71,73,77,79,81,82,83,
%U 85,86,87,89,91,93,94,95,97,101,103,105,106,107,109,111,113,115,117,118,119,121,123,125,127,129,130,131
%N Numbers k such that A276086(k) mod A003415(k) is an even number, where A003415 is the arithmetic derivative and A276086 is the primorial base exp-function.
%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 A358227(n) = ((A276086(n)%A003415(n))%2);
%o isA358229(n) = !A358227(n);
%Y Complement: {1} U A358228.
%Y Cf. A003415, A276086, A328382, A358221 (subsequence), A358227 (characteristic function).
%Y Cf. also A358226.
%K nonn
%O 1,1
%A _Antti Karttunen_, Nov 25 2022