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 #7 Aug 03 2017 00:01:41
%S 0,3,2,2,2,3,4,4,4,5,6,6,6,7,8,8,9,10,11,12,12,12,13,14,15,16,16,17,
%T 18,18,18,19,20,20,21,22,23,24,24,25,26,27,28,28,28,29,30,31,32,32,33,
%U 34,34,34,35,36,37,38,38,39,40,40,41,42,43,44,44,45,46,47,48,49,50,50,51
%N a(n) = n-th even nonprime minus n-th nonprime.
%H G. C. Greubel, <a href="/A163751/b163751.txt">Table of n, a(n) for n = 1..1000</a>
%F a(n) = (A163300(n) - A141468(n)).
%t nonPrime[n_Integer] := FixedPoint[n + PrimePi@# &, n + PrimePi@n];
%t A087156[n_] := Mod[n, DivisorSigma[1, n]]; A141468 := Array[nonPrime, 60, 0]; Table[2*A087156[n] - A141468[[n]], {n, 1, 50}] (* _G. C. Greubel_, Aug 02 2017 *)
%Y Cf. A141468, A163300.
%K nonn
%O 1,2
%A _Juri-Stepan Gerasimov_, Aug 03 2009
%E Entries checked by _R. J. Mathar_, May 21 2010