cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A072568 Even interprimes.

Original entry on oeis.org

4, 6, 12, 18, 26, 30, 34, 42, 50, 56, 60, 64, 72, 76, 86, 102, 108, 120, 134, 138, 144, 150, 154, 160, 170, 176, 180, 186, 192, 198, 228, 236, 240, 246, 254, 260, 266, 270, 274, 282, 288, 300, 312, 324, 334, 342, 348, 356, 370, 376, 386, 414, 420, 426, 432
Offset: 1

Views

Author

Marco Matosic, Jun 21 2002

Keywords

Comments

The interprimes (A024675) are those integers that lie at the midpoint between consecutive odd primes.

Crossrefs

Even members of A024675.

Programs

  • Mathematica
    Select[Plus @@@ Partition[Table[Prime[n], {n, 2, 100}], 2, 1]/2, EvenQ]

Extensions

Offset corrected by Amiram Eldar, Mar 23 2020

A072571 Even interprimes i = (p+q)/2 (where p, q are consecutive primes) such that (q-p)/2 is divisible by 3.

Original entry on oeis.org

26, 34, 50, 56, 64, 76, 86, 134, 154, 160, 170, 176, 236, 254, 260, 266, 274, 334, 356, 370, 376, 386, 436, 446, 506, 532, 544, 560, 566, 574, 590, 596, 604, 610, 650, 656, 680, 730, 736, 754, 944, 950, 974, 980, 994, 1016, 1036, 1066, 1078, 1100, 1106
Offset: 1

Views

Author

Marco Matosic, Jun 24 2002

Keywords

Crossrefs

Cf. A024675, A072570. A072568 is union of A072570 and this sequence.

Programs

  • Mathematica
    a = Table[Prime[n], {n, 2, 200}]; b = {}; Do[d = (a[[n + 1]] - a[[n]])/2; If[ EvenQ[ a[[n]] + d] && Mod[d, 6] == 3, b = Append[b, a[[n]] + d]], {n, 1, 198}]; b
    Select[Mean/@Select[Partition[Prime[Range[200]],2,1],Divisible[(#[[2]]- #[[1]])/ 2,3]&],EvenQ] (* Harvey P. Dale, May 09 2021 *)

Formula

(P_n+1 - P_n)/2 is even but not divisible by 4.

Extensions

Edited by N. J. A. Sloane and Robert G. Wilson v, Jun 27 2002
Showing 1-2 of 2 results.