[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!)
Revision History for A140106 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A140106 Number of noncongruent diagonals in a regular n-gon.
(history; published version)
#52 by Michael De Vlieger at Mon Sep 18 15:39:16 EDT 2023
STATUS

reviewed

approved

#51 by Stefano Spezia at Mon Sep 18 15:36:57 EDT 2023
STATUS

proposed

reviewed

#50 by Michel Marcus at Mon Sep 18 11:02:56 EDT 2023
STATUS

editing

proposed

#49 by Michel Marcus at Mon Sep 18 11:02:54 EDT 2023
PROG

(sageMathSageMath)

STATUS

proposed

editing

#48 by Chai Wah Wu at Mon Sep 18 10:21:49 EDT 2023
STATUS

editing

proposed

#47 by Chai Wah Wu at Mon Sep 18 10:21:46 EDT 2023
PROG

(Python)

def A140106(n): return n-2>>1 if n>1 else 0 # Chai Wah Wu, Sep 18 2023

STATUS

approved

editing

#46 by N. J. A. Sloane at Sun Feb 12 10:17:54 EST 2023
STATUS

proposed

approved

#45 by G. C. Greubel at Fri Feb 10 23:55:43 EST 2023
STATUS

editing

proposed

#44 by G. C. Greubel at Fri Feb 10 23:55:33 EST 2023
LINKS

G. C. Greubel, <a href="/A140106/b140106.txt">Table of n, a(n) for n = 1..5000</a>

FORMULA

For n > 1, a(n) = floor((n-2)/2), for n > 1, otherwise 0. - Washington Bomfim, Feb 12 2011

For n > 1, a(n) = floor(A129194(n - -1)/A022998(n)), for n)). - _ > 1. - _Paul Curtz_, Jul 23 2017

PROG

(Magma)

A140106:= func< n | n eq 1 select 0 else Floor((n-2)/2) >;

[A140106(n): n in [1..80]]; // G. C. Greubel, Feb 10 2023

(sageMath)

def A140106(n): return 0 if (n==1) else (n-2)//2

[A140106(n) for n in range(1, 81)] # G. C. Greubel, Feb 10 2023

CROSSREFS

Essentially the same as A004526.

Cf. A000554, A007304, A007997, A013929, A022998, A129194.

Cf. A047967, A129194, A235451, A285508, A321773.

Cf. A007304, A007997, A013929, A047967, A235451, A285508, A321773.

Essentially the same as A004526.

STATUS

approved

editing

#43 by N. J. A. Sloane at Wed Oct 21 22:47:30 EDT 2020
STATUS

proposed

approved

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 11:15 EDT 2024. Contains 375512 sequences. (Running on oeis4.)