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!)
A218348 Hilltop maps: number of n X 2 binary arrays indicating the locations of corresponding elements not exceeded by any horizontal or vertical neighbor in a random 0..1 nX2 array. 5
3, 11, 41, 149, 547, 2007, 7361, 27001, 99043, 363299, 1332617, 4888173, 17930307, 65770159, 241251521, 884934705, 3246028995, 11906758971, 43675182633, 160204937605, 587647732323, 2155550649479, 7906775346689, 29002842683433 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Number of dominating sets in the ladder graph P_2 X P_n. - Andrew Howroyd, May 10 2017
LINKS
Eric Weisstein's World of Mathematics, Dominating Set
Eric Weisstein's World of Mathematics, Ladder Graph
FORMULA
a(n) = 3*a(n-1) +2*a(n-2) +2*a(n-3) -a(n-4) -a(n-5).
G.f.: x*(3 + 2*x + 2*x^2 - 2*x^3 - x^4)/(1 - 3*x - 2*x^2 - 2*x^3 + x^4 + x^5). - Andrew Howroyd, May 10 2017
EXAMPLE
Some solutions for n=3
..1..0....1..1....0..1....1..0....1..1....1..1....0..1....0..0....1..0....0..1
..1..0....0..0....1..1....1..0....0..1....1..1....0..1....1..1....0..0....0..0
..0..1....1..1....0..1....1..0....1..0....1..0....1..0....0..0....0..1....1..0
MATHEMATICA
LinearRecurrence[{3, 2, 2, -1, -1}, {3, 11, 41, 149, 547}, 20] (* Eric W. Weisstein, Jun 14 2017 *)
CoefficientList[Series[(x (3 + 2 x + 2 x^2 - 2 x^3 - x^4))/(1 - 3 x - 2 x^2 - 2 x^3 + x^4 + x^5), {x, 0, 20}], x] (* Eric W. Weisstein, Jun 14 2017 *)
Table[RootSum[1 + # - 2 #^2 - 2 #^3 - 3 #^4 + #^5 &, (-167 + 525 # - 73 #^2 + 819 #^3 - 218 #^4) #^n &]/2102, {n, 20}] (* Eric W. Weisstein, Jul 13 2017 *)
PROG
(PARI)
Vec((3+2*x+2*x^2-2*x^3-x^4)/(1-3*x-2*x^2-2*x^3+x^4+x^5)+O(x^50)) \\ Andrew Howroyd, May 10 2017
CROSSREFS
Column 2 of A218354.
Sequence in context: A242233 A294504 A086972 * A320827 A335793 A077831
KEYWORD
nonn,easy
AUTHOR
R. H. Hardin, Oct 26 2012
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 April 16 01:40 EDT 2024. Contains 371696 sequences. (Running on oeis4.)