[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 A301731 (Underlined text is an addition; strikethrough text is a deletion.)

Showing all changes.
A301731 Triangle read by rows: T(n,m) = one-half of number of embeddings of the n-wheel with k = n+1-2m regions (n >= 1, 0 <= m <= floor(n/2)).
(history; published version)
#8 by R. J. Mathar at Sun Apr 08 21:50:44 EDT 2018
STATUS

editing

approved

#7 by R. J. Mathar at Sun Apr 08 21:49:23 EDT 2018
DATA

1, 1, 1, 1, 7, 1, 29, 18, 1, 95, 288, 1, 275, 2484, 1080, 1, 742, 15589, 29748, 1, 1918, 80269, 420132, 142800, 1, 4818, 360801, 4122572, 5833728, 1, 11850, 1467921, 31844420, 118722528, 33747840, 1, 28655, 5531163, 207081545, 1633525036, 1869724800, 1, 68299, 19603683, 1181340677, 17259989516, 50714812224, 12573792000, 1, 160745, 66077583, 6076248035, 150181724836, 914389931520, 891276410880, 1, 374101, 213560347, 28728259703, 1124236561448, 12461968618736, 30595454901504, 6801152117760

#6 by R. J. Mathar at Sun Apr 08 21:49:01 EDT 2018
DATA

1, 1, 1, 1, 7, 1, 29, 18, 1, 95, 288, 1, 275, 2484, 1080, 1, 742, 15589, 29748, 1, 1918, 80269, 420132, 142800, 1, 4818, 360801, 4122572, 5833728, 1, 11850, 1467921, 31844420, 118722528, 33747840, 1, 28655, 5531163, 207081545, 1633525036, 1869724800, 1, 68299, 19603683, 1181340677, 17259989516, 50714812224, 12573792000, 1, 160745, 66077583, 6076248035, 150181724836, 914389931520, 891276410880, 1, 374101, 213560347, 28728259703, 1124236561448, 12461968618736, 30595454901504, 6801152117760

MAPLE

s1 := proc(n, k)

(-1)^n*combinat[stirling1](n, k) ;

end proc:

A301731 := proc(n, k)

local a, m, i ;

a := 4*s1(n+1, k-1) ;

for m from 1 to n do

a := a+add( binomial(k+i, k) *binomial(n, m) *((n+1)^i-(n+1-m)^i-(m+1)^i+1) *s1(n+2, k+1+i), i=0..n+1-k) ;

end do:

a/n/(n+1) ;

abs(%/2) ;

end proc:

for n from 1 to 15 do

for k from n+1 to 1 by -2 do

printf("%a, ", A301731(n, k)) ;

end do:

printf("\n") ;

end do: # R. J. Mathar, Apr 08 2018

KEYWORD

nonn,tabf,more,new

STATUS

approved

editing

#5 by R. J. Mathar at Sun Apr 08 01:17:45 EDT 2018
STATUS

editing

approved

#4 by R. J. Mathar at Sun Apr 08 01:17:34 EDT 2018
REFERENCES

Yichao Chen et al., On the genus distribution of wheels ..., Discrete Math., 341 (2018), 934-935.

LINKS

Yichao Chen et al., <a href="http://doi.org/10.1016/j.disc.2017.12.007">On the genus distribution of wheels ...</a>, Discrete Math., 341 (2018), 934-935.

STATUS

approved

editing

#3 by N. J. A. Sloane at Tue Apr 03 11:51:50 EDT 2018
STATUS

editing

approved

#2 by N. J. A. Sloane at Tue Apr 03 11:42:27 EDT 2018
NAME

allocated for N. J. A. Sloane

Triangle read by rows: T(n,m) = one-half of number of embeddings of the n-wheel with k = n+1-2m regions (n >= 1, 0 <= m <= floor(n/2)).

DATA

1, 1, 1, 1, 7, 1, 29, 18, 1, 95, 288, 1, 275, 2484, 1080, 1, 742, 15589, 29748

OFFSET

1,5

REFERENCES

Yichao Chen et al., On the genus distribution of wheels ..., Discrete Math., 341 (2018), 934-935.

FORMULA

Theorem 3.4 of Chen et al. (2018) gives a formula.

EXAMPLE

Triangle begins:

1,

1,1,

1,7,

1,29,18,

1,95,288,

1,275,2484,1080,

1,742,15589,29748,

...

KEYWORD

allocated

nonn,tabf,more

AUTHOR

N. J. A. Sloane, Apr 03 2018

STATUS

approved

editing

#1 by N. J. A. Sloane at Sun Mar 25 22:07:13 EDT 2018
NAME

allocated for N. J. A. Sloane

KEYWORD

allocated

STATUS

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 22:07 EDT 2024. Contains 375518 sequences. (Running on oeis4.)