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!)
A362526 a(n) = 2^n*(n + 2) + (n - 7)*n/2 - 2. 1
1, 9, 32, 88, 217, 507, 1150, 2562, 5639, 12301, 26644, 57372, 122917, 262191, 557114, 1179718, 2490451, 5242977, 11010160, 23068800, 48234641, 100663459, 209715382, 436207818, 905969887, 1879048437, 3892314380, 8053063972, 16642998589, 34359738711 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For n > 2, number of vertex cuts in the n-crown graph.
LINKS
Eric Weisstein's World of Mathematics, Crown Graph
Eric Weisstein's World of Mathematics, Vertex Cut
FORMULA
a(n) = 7*a(n-1)-19*a(n-2)+25*a(n-3)-16*a(n-4)+4*a(n-5).
G.f.: -x*(1 + 2*x - 12*x^2 + 10*x^3)/((-1 + x)^3*(-1 + 2*x)^2).
MATHEMATICA
Table[2^n (n + 2) + (n - 7) n /2 - 2, {n, 20}]
LinearRecurrence[{7, -19, 25, -16, 4}, {1, 9, 32, 88, 217}, 20]
CoefficientList[Series[-(1 + 2 x - 12 x^2 + 10 x^3/((-1 + x)^3 (-1 + 2 x)^2)), {x, 0, 20}], x]
PROG
(Python)
def A362526(n): return (n+2<<n)+((n-7)*n>>1)-2 # Chai Wah Wu, Apr 24 2023
CROSSREFS
Sequence in context: A152619 A051662 A326247 * A225918 A367669 A231999
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Apr 24 2023
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 May 1 13:37 EDT 2024. Contains 372172 sequences. (Running on oeis4.)