login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A287062
Number of dominating sets in the 2n-crossed prism graph.
8
11, 183, 2417, 32499, 436281, 5857683, 78646537, 1055926979, 14177123321, 190345385523, 2555621823337, 34312378451619, 460686046833881, 6185278996234003, 83045007601555017, 1114981764240774019, 14970006873311301561, 200990826015513435123
OFFSET
1,1
COMMENTS
Sequence extended to n=1 using recurrence. - Andrew Howroyd, May 21 2017
LINKS
Eric Weisstein's World of Mathematics, Crossed Prism Graph
Eric Weisstein's World of Mathematics, Dominating Set
FORMULA
From Andrew Howroyd, May 21 2017 (Start)
a(n) = 11*a(n-1)+31*a(n-2)+21*a(n-3)+2*a(n-4).
G.f.: x*(11+62*x+63*x^2+8*x^3)/((1+x)*(1-12*x-19*x^2-2*x^3)).
(End)
MATHEMATICA
LinearRecurrence[{11, 31, 21, 2}, {11, 183, 2417, 32499}, 20] (* Eric W. Weisstein, May 27 2017 *)
Table[(-1)^n + RootSum[-2 - 19 # - 12 #^2 + #^3 &, #^n &], {n, 20}] (* Eric W. Weisstein, May 27 2017 *)
PROG
(PARI)
Vec((11+62*x+63*x^2+8*x^3)/((1+x)*(1-12*x-19*x^2-2*x^3)) + O(x^20)) \\ Andrew Howroyd, May 21 2017
CROSSREFS
Sequence in context: A270663 A068648 A209351 * A215203 A034787 A001408
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, May 19 2017
EXTENSIONS
a(1) and a(8)-a(18) from Andrew Howroyd, May 21 2017
STATUS
approved