OFFSET
1,1
COMMENTS
Isolated composites are composites surrounded by two primes, hence the average of a twin prime pair.
EXAMPLE
a(1)=2+4=6. a(2)=23+6=29.
MATHEMATICA
With[{prs=Prime[Range[300]], nn=50}, tps=Select[Partition[prs, 2, 1], Last[#]-First[#]==2&]; iscos=Mean/@tps; isprs = Complement[prs, Flatten[tps]]; Total/@Thread[{Take[isprs, nn], Take[iscos, nn]}]] (* Harvey P. Dale, Sep 20 2011 *)
CROSSREFS
KEYWORD
nonn,less
AUTHOR
Juri-Stepan Gerasimov, Aug 11 2009
EXTENSIONS
Edited and corrected by R. J. Mathar, Aug 26 2009
STATUS
approved