[go: up one dir, main page]

login
Revision History for A324670 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Number of simple graphs on n unlabeled nodes with minimum degree exactly 2.
(history; published version)
#20 by N. J. A. Sloane at Wed Sep 04 17:20:21 EDT 2019
STATUS

reviewed

approved

#19 by Joerg Arndt at Wed Sep 04 02:04:08 EDT 2019
STATUS

proposed

reviewed

#18 by Andrew Howroyd at Tue Sep 03 19:30:40 EDT 2019
STATUS

editing

proposed

#17 by Andrew Howroyd at Tue Sep 03 18:33:21 EDT 2019
CROSSREFS
#16 by Andrew Howroyd at Tue Sep 03 18:18:54 EDT 2019
NAME

allocated for Andrew HowroydNumber of simple graphs on n unlabeled nodes with minimum degree exactly 2.

DATA

0, 0, 1, 2, 8, 43, 360, 4869, 113622, 4605833, 325817259, 40350371693, 8825083057727, 3447229161054412, 2432897732375453872, 3135299553791882831175, 7445569254636418368355175, 32831169277561326131677454356, 270499962116368309216399255404116

OFFSET

1,4

LINKS

Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/MinimumVertexDegree.html">Minimum Vertex Degree</a>

FORMULA

a(n) = A261919(n) - A007111(n).

CROSSREFS

Column k=2 of A294217.

A diagonal of A263293.

Cf. A007111, A261919.

KEYWORD

allocated

nonn

AUTHOR

Andrew Howroyd, Sep 03 2019

STATUS

approved

editing

#15 by Andrew Howroyd at Tue Sep 03 18:18:54 EDT 2019
NAME

allocated for Andrew Howroyd

KEYWORD

recycled

allocated

#14 by R. J. Mathar at Thu Mar 14 14:55:58 EDT 2019
STATUS

editing

approved

#13 by R. J. Mathar at Thu Mar 14 14:55:52 EDT 2019
NAME

Starting at n, a(n) is the maximum point visited according to the following rules. On the k-th step (k=1,2,3,...) move a distance of k in the direction of zero. If the number landed on has been landed on before, move a distance of k away from zero instead.

DATA

0, 1, 2, 3, 21, 26, 6, 6843, 8, 14, 10, 72, 365, 366, 14, 15, 352, 4674389, 18, 22, 891114, 21, 102, 23, 31, 7856204, 26, 27, 28, 1700, 61960674, 3702823, 3702824, 3702825, 3702826, 35, 36, 370, 1047903, 1047904, 596, 41, 42, 43, 2976, 45, 341, 260, 261, 123

OFFSET

0,3

COMMENTS

Apparently a duplicate of A248953.

EXAMPLE

For n=2, the points visited are 2,1,-1,-4,0, the maximum of which is 2, hence a(2) = 2.

PROG

(Python)

#Sequences A324660-A324692 generated by manipulating this trip function

#spots - positions in order with possible repetition

#flee - positions from which we move away from zero with possible repetition

#stuck - positions from which we move to a spot already visited with possible repetition

def trip(n):

stucklist = list()

spotsvisited = [n]

leavingspots = list()

turn = 0

forbidden = {n}

while n != 0:

turn += 1

sign = n // abs(n)

st = sign * turn

if n - st not in forbidden:

n = n - st

else:

leavingspots.append(n)

if n + st in forbidden:

stucklist.append(n)

n = n + st

spotsvisited.append(n)

forbidden.add(n)

return {'stuck':stucklist, 'spots':spotsvisited,

'turns':turn, 'flee':leavingspots}

#Actual sequence

def a(n):

d = trip(n)

return max(d['spots'])

CROSSREFS
KEYWORD

nonn,new

recycled

AUTHOR

David Nacin, Mar 10 2019

STATUS

reviewed

editing

#12 by Georg Fischer at Wed Mar 13 16:39:55 EDT 2019
STATUS

proposed

reviewed

Discussion
Wed Mar 13
23:59
N. J. A. Sloane: I asked David N to do that
Thu Mar 14
12:51
David Nacin: Added the definition to the comments of A248953. Also moved the Python.
#11 by R. J. Mathar at Wed Mar 13 16:05:57 EDT 2019
STATUS

editing

proposed

Discussion
Wed Mar 13
16:39
Georg Fischer: Maybe the content could be moved to A248953.