login

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”).

A345363
Composite numbers that are the exact average of three consecutive primes.
0
511, 537, 999, 1073, 1239, 1461, 1501, 1541, 1763, 1773, 1899, 1917, 2071, 2181, 2401, 2409, 2449, 3059, 3069, 3179, 3201, 3509, 3807, 4081, 4101, 4179, 4387, 4399, 4437, 4467, 4559, 4607, 4681, 4705, 4879, 5089, 5211, 5257, 5271, 5373, 5429, 5757, 5829, 6415, 6621, 6671
OFFSET
1,1
EXAMPLE
511 is composite and the average of the consecutive primes 503, 509 and 521. Thus, 511 is in the sequence.
MATHEMATICA
Select[Table[(Prime[n] + Prime[n + 1] + Prime[n + 2])/3, {n, 2000}], IntegerQ[#] && ! PrimeQ[#] &]
CROSSREFS
Cf. A242218 (subsequence of semiprimes).
Sequence in context: A196289 A027494 A145588 * A242218 A051985 A103206
KEYWORD
nonn
AUTHOR
Tanya Khovanova, Jun 16 2021
STATUS
approved