A055381 Smallest composite k such that the n closest primes below and above k are symmetric about k.
4, 9, 12, 30, 30, 165, 8021811, 1071065190, 1613902650, 1797595815015, 633925574060895, 22930603692243585, 5179852391836339140, 9648166508472058455
Offset: 1
Examples
The three primes on each side of 12 (13, 17, 19 and 11, 7, 5) are symmetrical with respect to the gaps, so a(3) = 12.
Links
- Carlos Rivera, Problem 60. Symmetric primes on each side, The Prime Puzzles & Problems Connection.
Programs
-
Mathematica
Table[i = n + 2; While[x = Differences@ Flatten@{Table[NextPrime[i, k], {k, -n, -1}], i, Table[NextPrime[i, k], {k, 1, n}]}; x != Reverse[x], i++]; i, {n, 6}] (* Robert Price, Oct 12 2019 *)
Formula
Extensions
a(10) from Donovan Johnson, Mar 09 2008
a(11) from Dmitry Petukhov, added by Max Alekseyev, Aug 08 2014
a(12) computed from A055382(12) by Max Alekseyev, Jul 23 2015
Name clarified by Peter Munn, Jan 09 2023
a(13)-a(14) computed from A055382 by Dmitry Petukhov, Mar 25 2025
Comments