OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..2500
EXAMPLE
a(7) = {p(7) + C(7)}/2 = (17 + 14)/2 = 15.
p(9) = 23, C(9) = 16, average = 19.5, a(9) = 19.
MATHEMATICA
c[x_] := FixedPoint[x+PrimePi[ # ]+1&, x] Do[s=(Prime[n]+c[n])/2; If[IntegerQ[s], Print[s]], {n, 1, 256}]
IntegerPart[Mean[#]]&/@Module[{nn=100, cmps}, cmps=Select[Range[nn], CompositeQ]; Thread[{cmps, Prime[Range[Length[cmps]]]}]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Feb 24 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, May 30 2002
EXTENSIONS
More terms from Labos Elemer, Jul 31 2002
STATUS
approved