cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A287062 Number of dominating sets in the 2n-crossed prism graph.

Original entry on oeis.org

11, 183, 2417, 32499, 436281, 5857683, 78646537, 1055926979, 14177123321, 190345385523, 2555621823337, 34312378451619, 460686046833881, 6185278996234003, 83045007601555017, 1114981764240774019, 14970006873311301561, 200990826015513435123
Offset: 1

Views

Author

Eric W. Weisstein, May 19 2017

Keywords

Comments

Sequence extended to n=1 using recurrence. - Andrew Howroyd, May 21 2017

Programs

  • 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 *)
  • 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

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)

Extensions

a(1) and a(8)-a(18) from Andrew Howroyd, May 21 2017