[go: up one dir, main page]

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!)
A180686 Positive integers k such that the number of intersections of diagonals in the interior of a regular k-gon is prime. 1

%I #10 Aug 03 2024 16:48:43

%S 5,6,14,24,44,58,72,76,80,84,86,104,128,134,138,180,186,188,218,228,

%T 246,256,266,280,300,320,352,360,380,390,408,450,480,508,518,524,526,

%U 532,546,548,552,576,584,590,604,616,630,656,658,686,712,724,726,728,730

%N Positive integers k such that the number of intersections of diagonals in the interior of a regular k-gon is prime.

%D Chris K. Caldwill & G. L. Honaker, Jr., Prime Curios!, The Dictionary of Prime Number Trivia, CreateSpace, Sept. 2009, p. 145.

%H Robin Visser, <a href="/A180686/b180686.txt">Table of n, a(n) for n = 1..1000</a>

%t del[m_, n_] := If[ Mod[n, m] == 0, 1, 0]; Int[n_] := If[n < 4, 0, Binomial[n, 4] + del[2, n] (-5n^3 + 45n^2 - 70n + 24)/24 - del[4, n] (3n/2) + del[6, n] (-45n^2 + 262n)/6 + del[12, n]*42n + del[18, n]*60n + del[24, n]*35n - del[30, n]*38n - del[42, n]*82n - del[60, n]*330n - del[84, n]*144n - del[90, n]*96n - del[120, n]*144n - del[210, n]*96n]; Select[ Range@ 759, PrimeQ@ Int@# &]

%o (Sage)

%o def is_A180686(k):

%o return Integer(binomial(k,4) + (-5*k^3+45*k^2-70*k+24)*(k%2==0)/24

%o - 3*k*(k%4==0)/2 + (-45*k^2+262*k)*(k%6==0)/6 + 42*k*(k%12==0)

%o + 60*k*(k%18==0) + 35*k*(k%24==0) - 38*k*(k%30==0)

%o - 82*k*(k%42==0) - 330*k*(k%60==0) - 144*k*(k%84==0)

%o - 96*k*(k%90==0) - 144*k*(k%120==0) - 96*k*(k%210==0)).is_prime()

%o print([k for k in range(1, 1000) if is_A180686(k)]) # _Robin Visser_, Jul 29 2024

%Y Cf. A006561.

%K nonn

%O 1,1

%A _Robert G. Wilson v_, Sep 16 2010

%E Name edited by _Robin Visser_, Jul 29 2024

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 August 29 12:15 EDT 2024. Contains 375517 sequences. (Running on oeis4.)