login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A227050 Number of essentially different ways of arranging numbers 1 through 2n around a circle so that the sum and absolute difference of each pair of adjacent numbers are prime. 5

%I #70 Feb 16 2020 01:17:48

%S 0,0,0,0,0,2,1,4,88,0,976,22277,22365,376002,3172018,5821944,10222624,

%T 424452210,6129894510,38164752224

%N Number of essentially different ways of arranging numbers 1 through 2n around a circle so that the sum and absolute difference of each pair of adjacent numbers are prime.

%C See a similar problem, but for the set of numbers {0 through (n-1)}. - _Stanislav Sykora_, May 30 2014

%H Gary Antonick, <a href="http://wordplay.blogs.nytimes.com/2013/06/17/primes-circle/?_r=0">Numberplay: Bernardo Recamán’s Primes in a Circle Puzzle</a>, Jun 17 2013.

%H Stanislav Sykora, <a href="http://dx.doi.org/10.3247/SL5Math14.002">On Neighbor-Property Cycles</a>, <a href="http://ebyte.it/library/Library.html#math">Stan's Library</a>, Volume V, 2014; Table III.

%e For n = 6 the a(6) = 2 solutions are (1, 4, 9, 2, 5, 12, 7, 10, 3, 8, 11, 6) and (1, 6, 11, 8, 3, 10, 7, 4, 9, 2, 5, 12) because abs(1 - 4) = 3 and 1 + 4 = 5 are prime, etc.

%t A227050[n_] :=

%t Count[Map[lpf, Map[j1f, Permutations[Range[2,2 n]]]], 0]/2;

%t j1f[x_] := Join[{1}, x, {1}];

%t lpf[x_] := Length[

%t Join[Select[asf[x], ! PrimeQ[#] &],

%t Select[Differences[x], ! PrimeQ[#] &]]];

%t asf[x_] := Module[{i}, Table[x[[i]] + x[[i + 1]], {i, Length[x] - 1}]];

%t Table[A227050[n], {n, 1, 6}]

%t (* OR, a less simple, but more efficient implementation. *)

%t A227050[n_, perm_, remain_] := Module[{opt, lr, i, new},

%t If[remain == {},

%t If[PrimeQ[First[perm] - Last[perm]] &&

%t PrimeQ[First[perm] + Last[perm]], ct++];

%t Return[ct],

%t opt = remain; lr = Length[remain];

%t For[i = 1, i <= lr, i++,

%t new = First[opt]; opt = Rest[opt];

%t If[! (PrimeQ[Last[perm] - new] && PrimeQ[Last[perm] + new]),

%t Continue[]];

%t A227050[n, Join[perm, {new}],

%t Complement[Range[2 n], perm, {new}]];

%t ];

%t Return[ct];

%t ];

%t ];

%t Table[ct = 0; A227050[n, {1}, Range[2, 2 n]]/2, {n, 1, 10}]

%t (* _Robert Price_, Oct 22 2018 *)

%o (C++) // Listed in the Sykora link.

%Y Cf. similar sequences: A051252 (with sums of neighbors prime), A242527 (with sums of neighbors prime), A228626 (with differences of neighbors prime), A242528 (with sums and differences of neighbors prime).

%K nonn,more,hard

%O 1,6

%A _Tim Cieplowski_, Jun 29 2013

%E a(15)-a(18) added by _Tim Cieplowski_, Jan 04 2015

%E a(19) from _Fausto A. C. Cariboni_, Jun 06 2017

%E a(20) from _Bert Dobbelaere_, Feb 15 2020

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 17:39 EDT 2024. Contains 371797 sequences. (Running on oeis4.)